Slightly modified logging for cached.gif

This commit is contained in:
Gina Häußge 2016-08-18 14:01:25 +02:00
parent 08f9529c6d
commit 8782f77577

View file

@ -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("/")