From ced45d101a47f7a9af7eaae0cfae82d14634afe7 Mon Sep 17 00:00:00 2001 From: Richard C Gerkin Date: Thu, 22 Aug 2019 09:33:15 -0700 Subject: [PATCH] Update jupyterhub/auth.py Co-Authored-By: Min RK --- jupyterhub/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterhub/auth.py b/jupyterhub/auth.py index 0834e3d7..87ace62d 100644 --- a/jupyterhub/auth.py +++ b/jupyterhub/auth.py @@ -778,7 +778,7 @@ class LocalAuthenticator(Authenticator): except AttributeError: pass except KeyError: - self.log.warning("No UID for user %s" % name) + self.log.debug("No UID for user %s" % name) cmd += [name] self.log.info("Creating user: %s", ' '.join(map(pipes.quote, cmd))) p = Popen(cmd, stdout=PIPE, stderr=STDOUT)