We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c8d19c commit 3ba1e0aCopy full SHA for 3ba1e0a
source/abscence_handler.py
@@ -18,8 +18,9 @@ def check_for_current_absence(self) -> bool:
18
absence_input = EnvironmentVariableGetter.get("ABSENCE_TIMEFRAME", "")
19
return self._check_for_current_absence(absence_input)
20
except ValueError:
21
- self.log.warning(
22
- f'Improperly configured: "{absence_input}" is not a valid configuration! Read the README for instructions.',
+ self.log.error(
+ f'Improperly configured: "{absence_input}" is not a valid configuration! '
23
+ "Read the README for instructions.",
24
exc_info=True,
25
)
26
return False
0 commit comments