remove debug message

This commit is contained in:
Jakob Ketterl 2019-12-08 22:13:57 +01:00
parent 8248c60aa0
commit 1a092a1e24
1 changed files with 0 additions and 1 deletions

View File

@ -82,7 +82,6 @@ class AssetsController(Controller):
(content_type, encoding) = mimetypes.MimeTypes().guess_type(file)
self.send_response(data, content_type=content_type, last_modified=modified, max_age=3600)
except FileNotFoundError:
logger.debug("404")
self.send_response("file not found", code=404)
def handle_request(self):