Disable werkzeug logs

This commit is contained in:
Dominik Jain
2025-06-21 21:46:43 +02:00
parent c3bb2e3d77
commit e32caeb9d6
+3
View File
@@ -12,6 +12,9 @@ from serena.constants import SERENA_DASHBOARD_DIR
log = logging.getLogger(__name__)
# disable Werkzeug's logging to avoid cluttering the output
logging.getLogger("werkzeug").setLevel(logging.WARNING)
class MemoryLogHandler(logging.Handler):
def __init__(self, level: int = logging.NOTSET) -> None: