You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The codebase currently relies on standard print() statements for output. This makes it impossible to filter output by severity or automatically save logs.
Task:
Implement a centralized logger using Python's built-in logging module.
Replace all print() calls in IADE_Core/ with the appropriate logger calls.
Ensure the logger is configured to also record/dump actual Python objects and JSON results when a solver finishes, not just text strings.
The codebase currently relies on standard
print()statements for output. This makes it impossible to filter output by severity or automatically save logs.Task:
loggingmodule.print()calls inIADE_Core/with the appropriate logger calls.