From 9b7d38fa6751955e5705e526a414460065920e6d Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Fri, 6 Sep 2019 17:13:35 -0700 Subject: [PATCH] web_server: Remove log message about serving static directory Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/web_server.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plinth/web_server.py b/plinth/web_server.py index 74ac3d211..1e8410501 100644 --- a/plinth/web_server.py +++ b/plinth/web_server.py @@ -38,7 +38,6 @@ def _mount_static_directory(static_dir, static_url): } app = cherrypy.tree.mount(None, static_url, config) log.setup_cherrypy_static_directory(app) - logger.debug('Serving static directory %s on %s', static_dir, static_url) def init():