We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d72e3c5 commit 44e2719Copy full SHA for 44e2719
ipykernel/kernelapp.py
@@ -288,7 +288,8 @@ def log_connection_info(self):
288
for line in lines:
289
self.log.info(line)
290
# also raw print to the terminal if no parent_handle (`ipython kernel`)
291
- if not self.parent_handle:
+ # unless log-level is CRITICAL (--quiet)
292
+ if not self.parent_handle and self.log_level < logging.CRITICAL:
293
io.rprint(_ctrl_c_message)
294
295
io.rprint(line)
0 commit comments