X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fconfig%2Fshutdown-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fyang%2Fshutdown%2Fimpl%2FShutdownServiceImpl.java;h=4abbd3b36f761b71bc521c9a769f091e8afa3b44;hp=6cdcf605b04716537d73252d75443e92506b3a14;hb=d4e097a03ce5cb23b2418a0bc8fdc182d00da4d0;hpb=90c298fda86e8fa0df47a356e87cb34a20347beb diff --git a/opendaylight/config/shutdown-impl/src/main/java/org/opendaylight/controller/config/yang/shutdown/impl/ShutdownServiceImpl.java b/opendaylight/config/shutdown-impl/src/main/java/org/opendaylight/controller/config/yang/shutdown/impl/ShutdownServiceImpl.java index 6cdcf605b0..4abbd3b36f 100644 --- a/opendaylight/config/shutdown-impl/src/main/java/org/opendaylight/controller/config/yang/shutdown/impl/ShutdownServiceImpl.java +++ b/opendaylight/config/shutdown-impl/src/main/java/org/opendaylight/controller/config/yang/shutdown/impl/ShutdownServiceImpl.java @@ -94,6 +94,7 @@ class StopSystemBundleThread extends Thread { try { // wait so that JMX response is received Thread.sleep(1000); + logger.debug("Stopping system bundle"); systemBundle.stop(); } catch (BundleException e) { logger.warn("Can not stop OSGi server", e); @@ -138,7 +139,7 @@ class CallSystemExitThread extends Thread { logger.warn("Thread dump:{}", sb); System.exit(1); } catch (InterruptedException e) { - logger.info("Interrupted, not going to call System.exit(1)"); + logger.warn("Interrupted, not going to call System.exit(1)"); } } }