##// END OF EJS Templates
demote 'Polling kernel…' to Debug level
MinRK -
Show More
@@ -65,10 +65,10 b' class IOLoopKernelRestarter(LoggingConfigurable):'
65 self._pcallback = None
65 self._pcallback = None
66
66
67 def _poll(self):
67 def _poll(self):
68 self.log.info('Polling kernel...')
68 self.log.debug('Polling kernel...')
69 if not self.kernel_manager.is_alive():
69 if not self.kernel_manager.is_alive():
70 # This restart event should leave the connection file in place so
70 # This restart event should leave the connection file in place so
71 # the ports are the same. Because this takes place below the
71 # the ports are the same. Because this takes place below the
72 # MappingKernelManager, the kernel_id will also remain the same.
72 # MappingKernelManager, the kernel_id will also remain the same.
73 self.log.info('KernelRestarter: restarting kernel')
73 self.log.info('KernelRestarter: restarting kernel')
74 self.kernel_manager.restart_kernel(now=True);
74 self.kernel_manager.restart_kernel(now=True)
General Comments 0
You need to be logged in to leave comments. Login now