Skip to content

Commit 83a8bf3

Browse files
committed
Change an error message's log level from DEBUG to ERROR.
1 parent bef5a7d commit 83a8bf3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

relink.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def find_owned_files_scandir(item, user_uid, inputdata_root=DEFAULT_SOURCE_ROOT)
176176
yield entry_path
177177

178178
except (OSError, PermissionError) as e:
179-
logger.debug("Error accessing %s: %s. Skipping.", entry.path, e)
179+
logger.error("Error accessing %s: %s. Skipping.", entry.path, e)
180180
continue
181181

182182
except NotADirectoryError:

0 commit comments

Comments
 (0)