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.
2 parents bfa5a8d + 44e2719 commit e66c5e9Copy full SHA for e66c5e9
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