Logging: Loglevel INFO

This is the max that Tabby should log because debug and trace aren't
used within the application.

Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
kingbri 2024-03-10 17:33:37 -04:00
parent d45e847c7a
commit 045262f51f

View file

@ -83,7 +83,7 @@ UVICORN_LOG_CONFIG = {
"class": f"{UvicornLoggingHandler.__module__}.{UvicornLoggingHandler.__qualname__}", # noqa
},
},
"root": {"handlers": ["uvicorn"], "propagate": False, "level": "TRACE"},
"root": {"handlers": ["uvicorn"], "propagate": False, "level": "INFO"},
}
@ -94,7 +94,7 @@ def setup_logger():
logger.add(
RICH_CONSOLE.print,
level="DEBUG",
level="INFO",
format=_log_formatter,
colorize=True,
)