##// END OF EJS Templates
Merge pull request #8049 from Carreau/critical-warning...
Thomas Kluyver -
r20710:c05513fc merge
parent child Browse files
Show More
@@ -74,10 +74,10 b' class LoginHandler(IPythonHandler):'
74 if not app.ip:
74 if not app.ip:
75 warning = "WARNING: The notebook server is listening on all IP addresses"
75 warning = "WARNING: The notebook server is listening on all IP addresses"
76 if ssl_options is None:
76 if ssl_options is None:
77 app.log.critical(warning + " and not using encryption. This "
77 app.log.warning(warning + " and not using encryption. This "
78 "is not recommended.")
78 "is not recommended.")
79 if not app.password:
79 if not app.password:
80 app.log.critical(warning + " and not using authentication. "
80 app.log.warning(warning + " and not using authentication. "
81 "This is highly insecure and not recommended.")
81 "This is highly insecure and not recommended.")
82
82
83 @classmethod
83 @classmethod
General Comments 0
You need to be logged in to leave comments. Login now