We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27356e3 commit 1e207f6Copy full SHA for 1e207f6
1 file changed
taskiq/cli/scheduler/run.py
@@ -48,11 +48,12 @@ async def get_schedules(source: ScheduleSource) -> list[ScheduledTask]:
48
try:
49
return await source.get_schedules()
50
except Exception as exc:
51
- logger.warning(
52
- "Cannot update schedules with source: %s",
+ logger.error(
+ "Cannot update schedules with source: %s\n%s{}",
53
source,
54
+ exc,
55
+ exc_info=True,
56
)
- logger.debug(exc, exc_info=True)
57
return []
58
59
0 commit comments