Skip to content

Commit c205012

Browse files
Anil KonakallaAnil Konakalla
Anil Konakalla
authored and
Anil Konakalla
committed
Updated ClassCastException handling and error message
1 parent 3a27857 commit c205012

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

src/main/java/com/avioconsulting/mule/logger/internal/config/CustomLoggerConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ public void initialise() throws InitialisationException {
385385
&& flowLogConfig.getAttributesExpressionText() == null) {
386386
try {
387387
throw new InitialisationException(createStaticMessage(
388-
"One of attributesExpressionText or messageExpressionText must be defined in flow-logs-config"),
388+
"Both 'attributesExpressionText' and 'messageExpressionText' cannot be empty, at least one or both must be specified."),
389389
this);
390390
} catch (InitialisationException e) {
391391
throw new RuntimeException(e);

src/main/java/com/avioconsulting/mule/logger/internal/listeners/CustomLoggerPipelineNotificationListener.java

+3-6
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,10 @@ public void onNotification(PipelineMessageNotification notification) {
7474
logMessage(notification.getComponent().getLocation(), notification.getEvent(), message,
7575
config.getFlowCategorySuffix(),
7676
config.getFlowLogLevel(), flowLogAttributes);
77+
} catch (ClassCastException castException) {
78+
classLogger.error("Message expression text in flow-log-config needs to be a String", castException);
7779
} catch (Exception e) {
78-
if (e.getClass().getName().equals("java.lang.ClassCastException")
79-
|| e.getClass().getName().equals("ClassCastException")) {
80-
classLogger.error("Message expression text in flow-log-config needs to be a String", e);
81-
} else {
82-
classLogger.error("Error processing flow notification", e);
83-
}
80+
classLogger.error("Error processing flow notification", e);
8481
}
8582
} else {
8683
classLogger.warn(

0 commit comments

Comments
 (0)