From ffc2faabf71a96fe9a7e9cc084ec2e8a94a5efdf Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 20 Apr 2016 14:45:22 +0200 Subject: [PATCH] [DOC] Note that extra_log_file only affects Hub's logs not single-user server logs, or anything else. --- jupyterhub/app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jupyterhub/app.py b/jupyterhub/app.py index c661aae7..1b57e639 100644 --- a/jupyterhub/app.py +++ b/jupyterhub/app.py @@ -497,7 +497,11 @@ class JupyterHub(Application): return "%(color)s[%(levelname)1.1s %(asctime)s.%(msecs).03d %(name)s %(module)s:%(lineno)d]%(end_color)s %(message)s" extra_log_file = Unicode( - help="Set a logging.FileHandler on this file." + help="""Send JupyterHub's logs to this file. + + This will *only* include the logs of the Hub itself, + not the logs of the proxy or any single-user servers. + """ ).tag(config=True) extra_log_handlers = List( Instance(logging.Handler),