From 78867329fef30cac39ee0cac4ed84ba01743d10e 2014-05-08 18:08:37 From: Min RK Date: 2014-05-08 18:08:37 Subject: [PATCH] Merge pull request #5807 from takluyver/qtconsole-shutdown-loglevel Drop log level to info for Qt console shutdown --- diff --git a/IPython/qt/console/frontend_widget.py b/IPython/qt/console/frontend_widget.py index f345a80..a69ad70 100644 --- a/IPython/qt/console/frontend_widget.py +++ b/IPython/qt/console/frontend_widget.py @@ -546,7 +546,7 @@ class FrontendWidget(HistoryConsoleWidget, BaseFrontendMixin): def _handle_shutdown_reply(self, msg): """ Handle shutdown signal, only if from other console. """ - self.log.warn("shutdown: %s", msg.get('content', '')) + self.log.info("shutdown: %s", msg.get('content', '')) restart = msg.get('content', {}).get('restart', False) if not self._hidden and not self._is_from_this_session(msg): # got shutdown reply, request came from session other than ours