Fix logging to appear in Motia workbench
- Updated log_operation to use context.logger.warn for warnings - Added context parameter to all functions with logging - Replaced all direct logger calls with log_operation calls - Ensured all logging goes through context.logger for workbench visibility - Adjusted backoff base from 4 to 3 for faster retries - Added debug kuerzel list support in cron step
This commit is contained in:
@@ -37,5 +37,5 @@ class Config:
|
||||
|
||||
# Calendar Sync settings
|
||||
CALENDAR_SYNC_ANONYMIZE_GOOGLE_EVENTS = os.getenv('CALENDAR_SYNC_ANONYMIZE_GOOGLE_EVENTS', 'true').lower() == 'true'
|
||||
CALENDAR_SYNC_DEBUG_KUERZEL = [k.strip().upper() for k in os.getenv('CALENDAR_SYNC_DEBUG_KUERZEL', 'SB,AI,RO').split(',')]
|
||||
CALENDAR_SYNC_DEBUG_KUERZEL = [k.strip().upper() for k in os.getenv('CALENDAR_SYNC_DEBUG_KUERZEL', 'SB,AI,RO,OK,BI,ST,UR,PB,VB').split(',')]
|
||||
ADVOWARE_WRITE_PROTECTION = True
|
||||
Reference in New Issue
Block a user