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:
parent
d45e847c7a
commit
045262f51f
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue