Skip to content
Snippets Groups Projects
Commit e723a7ff authored by Lauri Himanen's avatar Lauri Himanen
Browse files

Lowered the logger warning level for not finding files.

parent fb2b3398
No related branches found
No related tags found
No related merge requests found
...@@ -252,7 +252,7 @@ class FileService(object): ...@@ -252,7 +252,7 @@ class FileService(object):
""" """
path = self.map_id_to_path.get(file_id) path = self.map_id_to_path.get(file_id)
if path is None: if path is None:
logger.error("The id '{}' has no path associated with it.".format(file_id)) logger.warning("The id '{}' has no path associated with it.".format(file_id))
return None return None
else: else:
return path return path
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment