buildgrid.server.logging module

class buildgrid.server.logging.BuildgridLogger(logger: Logger)

Bases: object

is_enabled_for(level: int) bool
debug(msg: Any, *, exc_info: bool | Tuple[Type[BaseException], BaseException, TracebackType | None] | Tuple[None, None, None] | BaseException | None = None, tags: Dict[str, Any] | None = None) None
info(msg: Any, *, exc_info: bool | Tuple[Type[BaseException], BaseException, TracebackType | None] | Tuple[None, None, None] | BaseException | None = None, tags: Dict[str, Any] | None = None) None
warning(msg: Any, *, exc_info: bool | Tuple[Type[BaseException], BaseException, TracebackType | None] | Tuple[None, None, None] | BaseException | None = None, tags: Dict[str, Any] | None = None) None
error(msg: Any, *, exc_info: bool | Tuple[Type[BaseException], BaseException, TracebackType | None] | Tuple[None, None, None] | BaseException | None = None, tags: Dict[str, Any] | None = None) None
exception(msg: Any, *, exc_info: bool | Tuple[Type[BaseException], BaseException, TracebackType | None] | Tuple[None, None, None] | BaseException | None = True, tags: Dict[str, Any] | None = None) None
buildgrid.server.logging.buildgrid_logger(name: str) BuildgridLogger