Skip to content
Snippets Groups Projects
Commit 40dca4bc authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Clarify "Unidentified file" log message as we did try and lookup via the comparators first.

parent dd739d5a
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,11 @@ def specialize(file):
logger.debug("File recognized by fallback. Magic says: %s", file.magic_file_type)
return file
logger.debug("Unidentified file. Magic says: %s", file.magic_file_type)
logger.debug(
"File not identified by any comparator. Magic says: %s",
file.magic_file_type,
)
return file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment