File tree 1 file changed +4
-3
lines changed
publish-common/src/main/java/com/ericsson/eiffel/remrem/publish/helper
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -346,10 +346,11 @@ private Channel createNewChannel() throws IOException {
346
346
public void shutdownCompleted (ShutdownSignalException cause ) {
347
347
// Beware that proper synchronization is needed here
348
348
if (cause .isInitiatedByApplication ()) {
349
- log .debug ("Shutdown is initiated by application. Ignoring it." );
349
+ log .info ("Shutdown of MB channel is initiated by application; ignoring it: "
350
+ + cause .getMessage ());
350
351
} else {
351
- log .error ("Shutdown is NOT initiated by application." );
352
- log . error ( cause .getMessage ());
352
+ log .error ("Shutdown of MB channel is NOT initiated by application: "
353
+ + cause .getMessage ());
353
354
boolean cliMode = Boolean .getBoolean (PropertiesConfig .CLI_MODE );
354
355
if (cliMode ) {
355
356
System .exit (-3 );
You can’t perform that action at this time.
0 commit comments