Skip to content

Commit c26f06b

Browse files
Anil KonakallaAnil Konakalla
Anil Konakalla
authored and
Anil Konakalla
committed
Updated default flow start log message with messageAttributeText
1 parent d9abf51 commit c26f06b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected void logMessage(ComponentLocation location, Event event, String logMes
5050

5151
protected Map<String, String> getFlowLogAttributes(EnrichedServerNotification notification) {
5252
Map<String, String> value = emptyAttributes;
53-
FlowLogConfig flowLogConfig = config.getFlowLogConfigMap().get(notification.getResourceIdentifier());
53+
FlowLogConfig flowLogConfig;
5454
/**
5555
* Flow name can contain wildcard (*)
5656
* We only look for wildcard either starting of the string or ending of the

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ public void onNotification(PipelineMessageNotification notification) {
5656
String message = "Event not processed yet, this should never be shown";
5757
switch (Integer.parseInt(notification.getAction().getIdentifier())) {
5858
case PipelineMessageNotification.PROCESS_START:
59-
message = "Flow [" + notification.getResourceIdentifier() + "]" + " start " + msgToAppend;
59+
message = "Flow [" + notification.getResourceIdentifier() + "]" + " start "
60+
+ (msgToAppend != null ? msgToAppend : "");
6061
break;
6162
case PipelineMessageNotification.PROCESS_COMPLETE:
6263
message = "Flow [" + notification.getResourceIdentifier() + "]" + " end";

0 commit comments

Comments
 (0)