mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-01-28 23:14:56 +03:00
Always apply base log level suppressions for noisy third-party libraries even if no specific logConfig is provided
This commit is contained in:
parent
886d9c4a55
commit
2f9308e0b1
@ -65,10 +65,15 @@ class FrigateProcess(BaseProcess):
|
|||||||
logging.basicConfig(handlers=[], force=True)
|
logging.basicConfig(handlers=[], force=True)
|
||||||
logging.getLogger().addHandler(QueueHandler(self.__log_queue))
|
logging.getLogger().addHandler(QueueHandler(self.__log_queue))
|
||||||
|
|
||||||
|
# Always apply base log level suppressions for noisy third-party libraries
|
||||||
|
# even if no specific logConfig is provided
|
||||||
if logConfig:
|
if logConfig:
|
||||||
frigate.log.apply_log_levels(
|
frigate.log.apply_log_levels(
|
||||||
logConfig.default.value.upper(), logConfig.logs
|
logConfig.default.value.upper(), logConfig.logs
|
||||||
)
|
)
|
||||||
|
else:
|
||||||
|
# Apply default INFO level with standard library suppressions
|
||||||
|
frigate.log.apply_log_levels("INFO", {})
|
||||||
|
|
||||||
self._setup_memray()
|
self._setup_memray()
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user