30 lines
918 B
Python
30 lines
918 B
Python
from typing import Self
|
|
|
|
from pydantic import Field, ValidationInfo, model_validator
|
|
|
|
from frigate.log import LogLevel, apply_log_levels
|
|
|
|
from .base import FrigateBaseModel
|
|
|
|
__all__ = ["LoggerConfig"]
|
|
|
|
|
|
class LoggerConfig(FrigateBaseModel):
|
|
default: LogLevel = Field(
|
|
default=LogLevel.info,
|
|
title="Logging level",
|
|
description="Default global log verbosity (debug, info, warning, error).",
|
|
)
|
|
logs: dict[str, LogLevel] = Field(
|
|
default_factory=dict,
|
|
title="Per-process log level",
|
|
description="Per-component log level overrides to increase or decrease verbosity for specific modules.",
|
|
)
|
|
|
|
@model_validator(mode="after")
|
|
def post_validation(self, info: ValidationInfo) -> Self:
|
|
if isinstance(info.context, dict) and info.context.get("install", False):
|
|
apply_log_levels(self.default.value.upper(), self.logs)
|
|
|
|
return self
|