##// END OF EJS Templates
Merge pull request #5807 from takluyver/qtconsole-shutdown-loglevel...
Min RK -
r16655:78867329 merge
parent child Browse files
Show More
@@ -546,7 +546,7 b' class FrontendWidget(HistoryConsoleWidget, BaseFrontendMixin):'
546 def _handle_shutdown_reply(self, msg):
546 def _handle_shutdown_reply(self, msg):
547 """ Handle shutdown signal, only if from other console.
547 """ Handle shutdown signal, only if from other console.
548 """
548 """
549 self.log.warn("shutdown: %s", msg.get('content', ''))
549 self.log.info("shutdown: %s", msg.get('content', ''))
550 restart = msg.get('content', {}).get('restart', False)
550 restart = msg.get('content', {}).get('restart', False)
551 if not self._hidden and not self._is_from_this_session(msg):
551 if not self._hidden and not self._is_from_this_session(msg):
552 # got shutdown reply, request came from session other than ours
552 # got shutdown reply, request came from session other than ours
General Comments 0
You need to be logged in to leave comments. Login now