Skip to content

Commit

Permalink
TO DROP: Added debug logs to kernelspec
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Mar 1, 2021
1 parent d92e95c commit 248fcc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipykernel/kernelspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def make_ipkernel_cmd(mod='ipykernel_launcher', executable=None, extra_arguments
if executable is None:
executable = sys.executable
extra_arguments = extra_arguments or []
arguments = [executable, '-m', mod, '-f', '{connection_file}']
arguments = [executable, '-m', mod, '-f', '{connection_file}', '--log-level', 'DEBUG']
arguments.extend(extra_arguments)

return arguments
Expand Down

0 comments on commit 248fcc2

Please sign in to comment.