Skip to main content

Python logging for Humans

Project description

https://travis-ci.org/keitheis/alog.svg?branch=master https://codecov.io/gh/keitheis/alog/branch/master/graph/badge.svg

Python logging for Humans. It’s very easy to use in an application setting.

For example

>>> import alog
>>> alog.info("Hi.")
2016-08-18 20:44:30,208 INFO  <stdin> Hi.
>>> def test():
...     alog.info("Test 1")
...     alog.error("Test 2")
...
>>> test()
2016-08-18 20:45:19,372 INFO  <stdin:2> Test 1
2016-08-18 20:45:19,372 ERROR <stdin:3> Test 2
>>> alog.set_level("ERROR")
>>> test()
2016-08-18 20:45:41,788 ERROR <stdin:3> Test 2

In IPython

In [1]: >>> import alog
   ...: >>> alog.info("Hi.")
   ...: >>> alog.error("Och!")
   ...: >>> alog.set_level("ERROR")
   ...: >>> alog.info("Hi.")
   ...: >>> alog.error("Och!")
   ...:
2016-08-18 20:42:57,801 INFO  <IPython:2> Hi.
2016-08-18 20:42:57,801 ERROR <IPython:3> Och!
2016-08-18 20:42:57,802 ERROR <IPython:6> Och!

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

alog-0.9.9.tar.gz (6.1 kB view hashes)

Uploaded Source

Built Distribution

alog-0.9.9-py2.py3-none-any.whl (6.8 kB view hashes)

Uploaded Python 2 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