We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 892d07f commit b1985deCopy full SHA for b1985de
1 file changed
restcomm/restcomm.mgcp/src/main/java/org/restcomm/connect/mgcp/MediaGateway.java
@@ -298,6 +298,8 @@ public void onReceive(final Object message) throws Exception {
298
if (logger.isDebugEnabled()){
299
logger.debug("MediaGateway onReceive. self.isTerminated: "+self.isTerminated()+" | Processing "+klass.getName()+" | object snapshot: \n"+this.toString());
300
}
301
+ if(self.isTerminated())
302
+ logger.error("MediaGateway is Terminated.");
303
if (PowerOnMediaGateway.class.equals(klass)) {
304
powerOn(message);
305
} else if (PowerOffMediaGateway.class.equals(klass)) {
0 commit comments