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

Actually don't emit "Unable to stat file" debug messages at all; we have...

Actually don't emit "Unable to stat file" debug messages at all; we have entirely-artificial directory "entries" such as ELF sections which, of course, will never exist as files.
parent 25634e37
No related branches found
No related tags found
No related merge requests found
Pipeline #235703 passed
......@@ -175,7 +175,6 @@ def compare_meta(path1, path2):
stat1 = os.lstat(path1)
stat2 = os.lstat(path2)
except Exception as e:
logger.debug(f'Unable to stat file "{path1}" or "{path2}" ({str(e)})')
return []
differences = []
......
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