From 8782f77577ba63e9be293eccab66d96651aff0f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Thu, 18 Aug 2016 14:01:25 +0200 Subject: [PATCH] Slightly modified logging for cached.gif --- src/octoprint/server/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/server/views.py b/src/octoprint/server/views.py index b26a7b5c..0dc26965 100644 --- a/src/octoprint/server/views.py +++ b/src/octoprint/server/views.py @@ -76,7 +76,7 @@ def in_cache(): _logger.info("Found path {} in cache (key: {}), signaling as cached".format(path, key)) return response else: - _logger.info("Path {} not yet cached (key: {}), signaling as missing".format(path, key)) + _logger.debug("Path {} not yet cached (key: {}), signaling as missing".format(path, key)) return abort(404) @app.route("/")