Skip to main content

The easiest and perhaps the most versatile logger for python, in hundred lines.

Table of Contents

Installation


As simple as pip install pyloggor!

Usage


  1. Once installed, you can access the logger class by importing it like so: from pyloggor import pyloggor
  2. Instantize the class using: myLogger = pyloggor()
  3. Log something! myLogger.log(level="ERROR", msg="JSON config is corrupt.")

Config


Standard
  1. Standard Format. This currently does not support customizing the base format, however you CAN pass in extra variables per log, which gets added at the end of the standard format string.

    • Standard Format: [P] DATE_TIME LEVEL FILE TOPIC MSG EXTRAS
  2. Level.

    • The default level hierarchy is: DEBUG -> INFO -> WARNING -> ERROR -> CRITICAL.
      • This means that if the level is WARNING, it will log all WARNINGs, ERRORs, and CRITICALs but not DEBUG and INFO messages.
    • You can pass in a custom level as well, which will not effect the level hierarchy and always print as well as log to file.
  3. Colouring.

    • While passing in default or level_colours config, please pass it in the form of level_colours={"LEVEL": "ANSI_ESCAPE_CODE"}
    • Colours are raw ANSI escape codes, e.g. "\033[1;36m" for bold cyan. pyloggor writes them directly, so any ANSI SGR sequence works.
Initialization
  1. file_output_level, console_output_level: Different levels for file and console output!

    • pyloggor(file_output_level="DEBUG", console_output_level="ERROR")
    • This will write ALL logs to file but only print ERRORs and CRITICALs to the console.
    • Both default to DEBUG.
  2. fn: The file it will output to, leave empty if it should not output to file.

    • Pass in the file name, or the literal file location- it will create the file if it doens't exist.
    • Defaults to None.
  3. console_output: Set this to False if you do not want it to print logs to the console. Defaults to True.

  4. topic_adjustment_space, file_adjustment_space, level_adjustment_space:

    • The loggor automatically adds whitespace to the end of topics, file names and levels (passed during logging) to make the output appear more... beautiful, as seen below
    • Input as 0 for no adjustment space
  5. level_align, topic_align, file_align:

    • Can be one of left, center, centre, right, all default to left.
    • Alignment of the text when it's wrapped with whitespace due to (4)
  6. level_colours: Defines the colour the log message is printed in.

    • Pass in a dict of ANSI escape codes like so:
       {
       	"DEBUG": "\033[1;36m",
       	"INFO": "\033[1;32m",
       	"WARNING": "\033[1;33m",
       	"ERROR": "\033[1;31m",
       	"CRITICAL": "\033[1;35m"
       }
      
    • Values are raw ANSI SGR escape codes.
    • If no colour is set, it defaults to the above, and for a custom level it defaults to bold white (\033[1;37m, configurable via default_colour).
  7. level_symbols: Each log level has a level system at the start of the log entry.

    • Pass in a dict structure like so:
       {
       	"DEBUG": "D",
       	"INFO": "I",
       	"WARNING": "W",
       	"ERROR": "E",
       	"CRITICAL": "C"
       }
      
    • Defaults to above mentioned and to * for all else (custom levels)
    • This will get printed as [D] at the start of all log entries.
    • Check below for a visual example.
  8. delim: Each field is separated by this deliminator, defaults to | (it gets wrapped with a space on each side).

  9. datefmt: The datetime format in which the output is logged, defaults to "%d-%b-%y, %H:%M:%S:%f" It appears something like this: 01-Oct-22, 10:35:21:300273

Usage
  1. level: Defaults to DEBUG
  2. topic: The topic of the log entry, defaults to "None"
  3. file: The file in which the log entry was done, useful for debugging! Defaults to "NoFile"
  4. msg: The actual log message. I have no idea why people do this but it defaults to "NoMessage"
  5. extras: A dict, of extras, which are printed beautifully.
  6. console_output: boolean, defaults to logger default. Useful if you want to override logger default to print or not to print.
  7. file_output: boolean, defaults to logger default. Same usecase as (6).
  • You can also use set_level() to change the logging levels of the logger instance at runtime.
    • You can pass in file_output_level and/or console_output_level; either one left unset keeps its current value.
    • e.g. logger.set_level(console_output_level="ERROR")
  • Call logger.close() to flush any buffered file logs and stop the background writer (also done automatically on interpreter exit).
from pyloggor import pyloggor

logger = pyloggor(fn="log.txt")

logger.log(level="debug", msg="DEBUG", topic="Internal", file="utils/internal.py")
logger.log(level="info", msg="This is an info message", topic="Info", file="info.py", file_output=False)
logger.log(level="warning", msg="Something is not right here.", topic="Listener", extras={"clientOid": "1c7c36d3464f11edb212b89a2a091df6", "clientName": "Joe"})
logger.log(level="error", msg="I caught an error.", topic="Error Handling", file="eh.py")
logger.log(level="critical", msg="Unhandled exception.", topic="MAIN", file="main.py", console_output=False)
logger.log(level="custom", msg="This is custom", topic="customized", file="test/custom.py")

output

Appendix


Find this incomplete? Create an issue! Just check mi main profile and my site, leave a star if ye liked this!

Download files

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

Source Distribution

pyloggor-2.0.0.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyloggor-2.0.0-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file pyloggor-2.0.0.tar.gz.

File metadata

  • Download URL: pyloggor-2.0.0.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for pyloggor-2.0.0.tar.gz
Algorithm Hash digest
SHA256 cd0085975a3d5ac9003f1079cc8bbed202fe68909c857d95a19ed3f195480df7
MD5 b518cb82f337fb4cd3c94e851867f436
BLAKE2b-256 6de6de612799f21a5b51560c19dbbaffe8bcc47c66612050abb2942f26ee89a9

See more details on using hashes here.

File details

Details for the file pyloggor-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: pyloggor-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 8.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for pyloggor-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3e3967e93419f10ba74702733c9072bb0a29e9b243c9640219b57d9a3a2a84d5
MD5 840f23978f983c385511ee08298b1c31
BLAKE2b-256 f6b56696cb3701475d25a2738ac9bbae576707f590ba3b2a9c6c95e80e3b229e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page