Skip to content

In building port of pinojs to python 🐍

License

Notifications You must be signed in to change notification settings

domienvandamme1/pino.py

This branch is 1 commit ahead of CoorpAcademy/pino.py:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

19bfce0 Β· Mar 2, 2022

History

77 Commits
Apr 24, 2020
Mar 2, 2022
Nov 30, 2020
Apr 24, 2020
Mar 25, 2020
Mar 9, 2020
Nov 30, 2020
Nov 30, 2020
Nov 30, 2020

Repository files navigation

pino.py

Json natural logger for python inspired by pino.js 🌲

PyPI Supported Python Versions Build Status codecov

In building port of pinojs logging library to python 🐍

⚠️ This is a in building prototype, it's API is subject to change. A CHANGELOG will be introduced once it's stable enough and publicized. Use it at you own risk, but feel free to reach with an issue.

Basic Example

from pino import pino

logger = pino(
    bindings={"apptype": "prototype", "context": "main"}
)

logger.info("Hello, I just started")
logger.debug({"details": 42}, "Some details that won't be seen")

child_logger = logger.child(context="some_job")
child_logger.info("Job started")
child_logger.info({"duration": 4012}, "Job completed %s", "NOW")

logger.info("Program completed")

Which would output:

{"level": "info", "time": 1587740056952, "message": "Hello, I just started", "host": "SomeHost", "apptype": "prototype", "context": "main", "millidiff": 0}
{"level": "info", "time": 1587740056952, "message": "Job started", "host": "SomeHost", "context": "some_job", "apptype": "prototype", "millidiff": 0}
{"level": "info", "time": 1587740056952, "message": "Job completed NOW", "host": "SomeHost", "duration": 4012, "context": "some_job", "apptype": "prototype", "millidiff": 0}
{"level": "info", "time": 1587740056952, "message": "Program completed", "host": "SomeHost", "apptype": "prototype", "context": "main", "millidiff": 0}

API

pino() constructor arguments

  • bindings: meta attached to the messages by default
  • level: minimal level to output logs, default to info
  • enabled: is logger enabled, default to true
  • millidiff: whether a millidiff is added to message, ms since last message, enabled by default.
  • stream : stream to write logs to, default to sys.stdout
  • dump_function: function to be used to serialise object to JSON, default json.dumps
  • messagekey: key for message entry, default message

pino logger instance

  • log methods: critical, error, warn, info, debug: (extra_bindings?), message, template value

  • .level: access or update current log level

  • child(metas): create a child logger instance with new metas/bindings attached to it. (metas can be provided either as dict or kwargs)

Complex examples

You can see more detailed examples in the examples folder, notably complex.py

Development πŸ› οΈ

This library use Poetry for management of the project, it's dependencies, build and else.

You can run test on all supported python version with poetry run task test (which will run tox), or you can run on your current python version with poetry run task pytest.

About

In building port of pinojs to python 🐍

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%