PamGram/utils/log/_config.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.6 KiB
Python
Raw Normal View History

2022-10-23 09:15:09 +00:00
from multiprocessing import RLock as Lock
from pathlib import Path
from typing import List, Literal, Optional, Union
2022-10-23 09:15:09 +00:00
from pydantic import BaseSettings
from utils.const import PROJECT_ROOT
__all__ = ("LoggerConfig",)
2022-10-23 09:15:09 +00:00
class LoggerConfig(BaseSettings):
_lock = Lock()
_instance: Optional["LoggerConfig"] = None
def __new__(cls, *args, **kwargs) -> "LoggerConfig":
with cls._lock:
if cls._instance is None:
cls.update_forward_refs()
result = super(LoggerConfig, cls).__new__(cls) # pylint: disable=E1120
2022-10-23 09:15:09 +00:00
result.__init__(*args, **kwargs)
cls._instance = result
return cls._instance
name: str = "PaiGram-logger"
"""logger 名称"""
2022-10-23 09:15:09 +00:00
level: Optional[Union[str, int]] = None
"""logger 的 level"""
2022-10-23 09:15:09 +00:00
debug: bool = False
"""是否 debug"""
width: Optional[int] = None
"""输出时的宽度"""
2022-10-23 09:15:09 +00:00
keywords: List[str] = []
"""高亮的关键字"""
2022-10-23 09:15:09 +00:00
time_format: str = "[%Y-%m-%d %X]"
"""时间格式"""
2022-10-23 09:15:09 +00:00
capture_warnings: bool = True
"""是否捕获 warning"""
color_system: Literal["auto", "standard", "256", "truecolor", "windows"] = "auto"
"""颜色模式: 自动、标准、256色、真彩、Windows模式"""
2022-10-23 09:15:09 +00:00
log_path: Union[str, Path] = "./logs"
"""log 所保存的路径,项目根目录的相对路径"""
2022-10-23 09:15:09 +00:00
project_root: Union[str, Path] = PROJECT_ROOT
"""项目根目录"""
2022-10-23 09:15:09 +00:00
traceback_max_frames: int = 20
traceback_locals_max_depth: Optional[int] = None
traceback_locals_max_length: int = 10
traceback_locals_max_string: int = 80