# HG changeset patch # User RhodeCode Admin # Date 2024-08-20 14:19:38 # Node ID 9ad352d3ff757a3e33382f36b2c4e10b9095e072 # Parent b08d803aabe810c61738065f05c85bf0315a5dc1 chore(logs): report warning on missing filestore object diff --git a/rhodecode/apps/file_store/views.py b/rhodecode/apps/file_store/views.py --- a/rhodecode/apps/file_store/views.py +++ b/rhodecode/apps/file_store/views.py @@ -57,8 +57,8 @@ class FileStoreView(BaseAppView): def _serve_file(self, file_uid): if not self.storage.exists(file_uid): store_path = self.storage.store_path(file_uid) - log.debug('File with FID:%s not found in the store under `%s`', - file_uid, store_path) + log.warning('File with FID:%s not found in the store under `%s`', + file_uid, store_path) raise HTTPNotFound() db_obj = FileStore.get_by_store_uid(file_uid, safe=True)