Skip to content

Commit 3ba1e0a

Browse files
committed
Use error logging for invalid absence configuration
1 parent 1c8d19c commit 3ba1e0a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

source/abscence_handler.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ def check_for_current_absence(self) -> bool:
1818
absence_input = EnvironmentVariableGetter.get("ABSENCE_TIMEFRAME", "")
1919
return self._check_for_current_absence(absence_input)
2020
except ValueError:
21-
self.log.warning(
22-
f'Improperly configured: "{absence_input}" is not a valid configuration! Read the README for instructions.',
21+
self.log.error(
22+
f'Improperly configured: "{absence_input}" is not a valid configuration! '
23+
"Read the README for instructions.",
2324
exc_info=True,
2425
)
2526
return False

0 commit comments

Comments
 (0)