From 7794eea3fb9784e5138ee84967159dd4447857b3 Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 16 Apr 2019 15:30:04 +0200 Subject: [PATCH] demote entrypoint-loading warning to debug-level --- jupyterhub/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterhub/app.py b/jupyterhub/app.py index 86898919..cfc52d6e 100644 --- a/jupyterhub/app.py +++ b/jupyterhub/app.py @@ -277,7 +277,7 @@ class JupyterHub(Application): try: cls = entry_point.load() except Exception as e: - self.log.warning( + self.log.debug( "Failed to load %s entrypoint %r: %r", trait.entry_point_group, key,