From 3b338cb424b2725fb0480df5d2b3453bb928478e Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Fri, 13 Mar 2015 15:37:48 -0700 Subject: [PATCH] Not critical, and more color as warning is orange --- IPython/html/auth/login.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IPython/html/auth/login.py b/IPython/html/auth/login.py index a4120829f..fa3b6ba9a 100644 --- a/IPython/html/auth/login.py +++ b/IPython/html/auth/login.py @@ -74,10 +74,10 @@ class LoginHandler(IPythonHandler): if not app.ip: warning = "WARNING: The notebook server is listening on all IP addresses" if ssl_options is None: - app.log.critical(warning + " and not using encryption. This " + app.log.warning(warning + " and not using encryption. This " "is not recommended.") if not app.password: - app.log.critical(warning + " and not using authentication. " + app.log.warning(warning + " and not using authentication. " "This is highly insecure and not recommended.") @classmethod