Skip to content

Commit b6d35fd

Browse files
committed
Minor fix for log statement
This refer to RESTCOMM-1932
1 parent da9f694 commit b6d35fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

restcomm/restcomm.interpreter/src/main/java/org/restcomm/connect/interpreter/VoiceInterpreter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,7 @@ private void onCallStateChanged(Object message, ActorRef sender) throws Transiti
12331233
outboundCallResponse = event.sipResponse();
12341234
}
12351235
if(logger.isInfoEnabled()){
1236-
String msg = String.format("VoiceInterpreter received CallStateChanged event: [%s] , from sender path: [%s] , sender is initial call: [%s] , current VI state: [%s] , current call state: [%s] , current outboundCall actor is: [%s]", event, sender.path(),(sender == call), fsm.state(), callState.toString(), outboundCall);
1236+
String msg = String.format("VoiceInterpreter received CallStateChanged event: [%s] , from sender path: [%s] , sender is initial call: [%s] , current VI state: [%s] , current call state: [%s] , current outboundCall actor is: [%s]", event, sender.path(),(sender == call), fsm.state(), callState != null ? callState.toString() : "null", outboundCall != null ? outboundCall.path(): "null");
12371237
logger.info(msg);
12381238
}
12391239

0 commit comments

Comments
 (0)