From 328c5e03b0b7341f7762a140a4d5e27174ac6925 2014-05-07 19:25:59
From: Thomas Kluyver <takowl@gmail.com>
Date: 2014-05-07 19:25:59
Subject: [PATCH] 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