Commit 40dca4bc authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

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

parent dd739d5a
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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