Skip to main content

This is my custom logger

Project description

DM-Logger

Urls

Initial parameters

            name: str  # logger name (*required)
   logging_level: str = "DEBUG",  # min logging level
   logs_dir_path: str = "logs",  # log parent directories, leave blank to not write
      print_logs: bool = True,  # print to the console or not
       file_name: str = "",  # log file name, default = <name>.log
      write_mode: Literal["a", "w"] = "w",  # start with new file or continue old one
          max_MB: int = 5,  # max log file size (MB)
       max_count: int = 10,  # max count of saved logs
 show_name_label: bool = False,  # show 'logger name' in the log message or not
show_place_label: bool = False,  # show 'module.func.line_num' in the log message or not
   format_string: str = "%(asctime)s.%(msecs)03d [%(levelname)s] (%(module)s.%(funcName)s:%(lineno)d) %(message)s",

Example

from dm_logger import DMLogger

dm_logger = DMLogger("main")

dm_logger.info("test message", tag="test tag")
dm_logger.debug("new message", id=123312)
dm_logger.info("only mess")
dm_logger.critical(env="production")
dm_logger.warning({"key": "value"})
dm_logger.error(["item1", "item2", 3])
dm_logger.info()

Requirements

Python 3.7 or higher.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dm-logger-0.3.0.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

dm_logger-0.3.0-py3-none-any.whl (3.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page