Just a tiny logger. Nothing more, nothing less.
Project description
Just a tiny logger. Nothing more, nothing less.
Installation
Through PyPI:
$ pip install tinylog
…or from the project root directory:
$ python setup.py install
Usage
Example usage:
# Basic usage, with console logging >> from tinylog import Logger >> log = Logger(console='stdout', info='~/test.log') >> log.debug('Foo!') 2015-09-09T23:40:42.817421 [DEBUG] Foo! >>log.info('Bar!') 2015-09-09T23:40:48.865398 [INFO] Bar! >> log.critical('Situation critical!') 2015-09-09T23:40:58.369778 [CRITICAL] Situation critical! >> exit() $ cat ~/test.log 2015-09-09T23:40:48.865398 [INFO] Bar! 2015-09-09T23:40:58.369778 [CRITICAL] Situation critical! # With separated debug and error logs, and custom format >> from tinylog import Logger >> log = Logger(debug='~/debug.log', error='~/error.log', fmt='{unixtimestamp}:{level}:{message}\n') >> log.debug('Debug message') >> log.info('Info message') >> log.warning('Warning message') >> log.error('Error message!') >> log.critical('Critical error!') >> exit() $ cat ~/debug.log 1441867497:DEBUG:Debug message 1441867501:INFO:Info message 1441867506:WARNING:Warning message 1441867512:ERROR:Error message! 1441867531:CRITICAL:Critical error! $ cat ~/error.log 1441867512:ERROR:Error message! 1441867531:CRITICAL:Critical error!
To disable logging, set the environment variable “NO_LOGGING”, or use a variable you pick by instanciating Logger with it, like deactivation_var=”NO_LOGGING”:
$ cat my_program.py from tinylog import Logger log = Logger(deactivation_var='FOOBAR', console='stdout') log.info('foo') $ python my_program.py 2015-09-09T23:57:50.008624 [INFO] foo $ FOOBAR=1 python my_program.py <empty>
Release Notes
- 0.1.4:
Remove zip_safe
- 0.1.2:
Fixed relative import for python3
- 0.1.1:
Updated default deactivation_var to NO_LOGGING, but it’s configurable.
- 0.1.0:
Released to PyPI with most features
- 0.0.1:
Project created
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
tinylog-0.1.5.tar.gz
(6.3 kB
view details)
File details
Details for the file tinylog-0.1.5.tar.gz
.
File metadata
- Download URL: tinylog-0.1.5.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b92839a112710cec6cd56e465124f7e221927fda2b742de87085f7b9e4a8dcbd |
|
MD5 | de2aeaf3d12bb42020b97979ef2276a5 |
|
BLAKE2b-256 | b03d564ec23d92f1aa2bc1454357c20175466ca8a6e5dac6cadceb69a86fbdc3 |