mirror of
https://github.com/theroyallab/tabbyAPI.git
synced 2026-03-14 15:57:27 +00:00
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:
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user