> For the complete documentation index, see [llms.txt](https://pyot.iann838.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pyot.iann838.com/utils/logging.md).

# Logging

Module: `pyot.utils.logging`

### *class* `LazyLogger`

> Lazy logger which its `log()` method will do nothing if level equals 0

Extends:

* `logging.Logger`
* `logging.Filterer`

Definitions:

* `__init__` -> `None`
  * `name`: `None`

Methods:

* *method* `log` -> `None`

  * `level`: `None`

  * `msg`: `None`

  > Same as logging.Logger.log, with a new level (0) to skip logging.
