Skip to content

Commit f9dd688

Browse files
Change error logging to info level for file read
1 parent f597ad0 commit f9dd688

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

concoredocker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def safe_literal_eval(filename, defaultValue):
107107
with open(filename, "r") as file:
108108
return literal_eval(file.read())
109109
except (FileNotFoundError, SyntaxError, ValueError, Exception) as e:
110-
logging.error(f"Error reading {filename}: {e}")
110+
logging.info(f"Error reading {filename}: {e}")
111111
return defaultValue
112112

113113
iport = safe_literal_eval("concore.iport", {})

0 commit comments

Comments
 (0)