You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.info("VoiceInterpreter received CallStateChanged event: "+event+ " from "+(sender == call? "call" : "outboundCall")+ ", sender path: " + sender.path() +", current VI state: "+fsm.state() +" current outboundCall actor is: "+outboundCall);
1236
+
Stringmsg = 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");
1237
+
logger.info(msg);
1237
1238
}
1238
1239
1239
1240
switch (event.state()) {
1240
1241
caseQUEUED:
1241
1242
//Do nothing
1242
1243
break;
1243
1244
caseRINGING:
1244
-
if (logger.isInfoEnabled()) {
1245
-
Stringmsg = String.format("Got 180 Ringing from outbound call %s",sender);
1246
-
logger.info(msg);
1247
-
}
1248
1245
break;
1249
1246
caseCANCELED:
1250
1247
if (is(initializingBridge) || is(acquiringOutboundCallInfo) || is(bridging) || is(bridged)) {
//NO_ANSWER, COMPLETED and FAILED events are handled the same
1341
-
if (logger.isInfoEnabled()) {
1342
-
Stringmsg = String.format("OnCallStateChanged, VI state %s, received %s, is it from inbound call: %s",fsm.state().toString(), callState.toString(), sender.equals(call));
1343
-
logger.info(msg);
1344
-
}
1345
1338
if (is(bridging) || is(bridged)) {
1346
1339
if (sender == outboundCall || sender == call) {
1347
1340
if(logger.isInfoEnabled()) {
@@ -2825,7 +2818,7 @@ public FinishDialing(final ActorRef source) {
0 commit comments