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 5e10ef2 commit 9f355c1Copy full SHA for 9f355c1
src/JupyterLibrary/keywords/server.py
@@ -53,6 +53,12 @@ def start_new_jupyter_server(
53
os.mkdir(home_dir)
54
config["env:HOME"] = home_dir
55
56
+ if "stdout" not in config:
57
+ config["stdout"] = join(tmpdir, "server.log")
58
+
59
+ if "stderr" not in config:
60
+ config["stderr"] = "STDOUT"
61
62
if notebook_dir is None:
63
notebook_dir = join(tmpdir, "notebooks")
64
os.mkdir(notebook_dir)
0 commit comments