Skip to content

Commit 9f355c1

Browse files
committed
that which is not logged is not seen
1 parent 5e10ef2 commit 9f355c1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/JupyterLibrary/keywords/server.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ def start_new_jupyter_server(
5353
os.mkdir(home_dir)
5454
config["env:HOME"] = home_dir
5555

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+
5662
if notebook_dir is None:
5763
notebook_dir = join(tmpdir, "notebooks")
5864
os.mkdir(notebook_dir)

0 commit comments

Comments
 (0)