Skip to content

Commit b8135b4

Browse files
authored
Restore print outputs in process (#357)
Fixes #356
1 parent 9d11279 commit b8135b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jupyterlab_server/process.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def __init__(self, cmd, startup_regex, logger=None, cwd=None, kill_event=None, e
217217
line = self._stdout.readline().decode("utf-8")
218218
if not line:
219219
raise RuntimeError("Process ended improperly")
220-
self.logger.info(line.rstrip())
220+
print(line.rstrip()) # noqa
221221
if re.match(startup_regex, line):
222222
break
223223

@@ -257,7 +257,7 @@ def _read_incoming(self):
257257
if not buf:
258258
return
259259

260-
self.logger.info(buf.decode("utf-8"), end="")
260+
print(buf.decode("utf-8"), end="") # noqa
261261

262262
def _create_process(self, **kwargs):
263263
"""Create the watcher helper process."""

0 commit comments

Comments
 (0)