Skip to main content

# SingleLog

Project description

SingleLog

Package Version PyPI - Downloads PyPI - Python Version Python package

A single python logger, super easy to use and thread safe.

Install

pip install SingleLog -U

Tutorials

Init

from SingleLog import Logger
from SingleLog import LogLevel

log_level = LogLevel.INFO # default
# log_level = LogLevel.DEBUG
# log_level = LogLevel.TRACE
logger = Logger('demo', log_level)
### Display
```python
from SingleLog import Logger

logger = Logger('demo')

logger.info(1)
logger.debug(2)
logger.trace(3)

Result

[20210501 11:19:48][demo] 1

When the log level is set to LogLevel.DEBUG or LogLevel.TRACE, the location will be displayed.

from SingleLog import Logger
from SingleLog import LogLevel

logger = Logger('demo', LogLevel.TRACE)
logger.info('This is the description', 'demo')
logger.debug('This is the description', 'demo')
logger.trace('This is the description', 'demo')

Result

[20211104 09:13:16][demo][demo.py 6] This is the description [demo]
[20211104 09:13:16][demo][demo.py 7] This is the description [demo]
[20211104 09:13:16][demo][demo.py 8] This is the description [demo]

SingleLog Supports some common types to display in format. Such as list, dict and tuple.

from SingleLog import Logger

logger = Logger('demo')
logger.info('show int list', [101, 102, 103])
logger.info('show tuple', ('12', '14', '16'))
logger.info('data', {'1': 'value1', '2': 'value2'})

Result

[20210501 12:14:48][demo] show int list [101 102 103]
[20210501 12:14:48][demo] show tuple (12 14 16)
[20210501 12:14:48][demo] data 
{
  "1": "value1",
  "2": "value2"
}

Supports the do method that you can call it, when you finish the work.

import time
from SingleLog import Logger

logger = Logger('demo')
logger.do_info('do something')
time.sleep(1)
logger.done('ok')

Output

[08.30 10:36:57][logger] do something ... ok

Handler

Sometimes, you want to catch the log message at higher level.
Use log handler.

from SingleLog import Logger
from SingleLog import LogLevel

def log_to_file(msg):
    with open('single_log.txt', 'a', encoding='utf8') as f:
        f.write(f'{msg}\n')


logger = Logger('INFO', LogLevel.INFO, handler=log_to_file)

logger.info('1')
logger.info(2)
logger.info('show value', 456)

Handler can also be a list.

from SingleLog import Logger
from SingleLog import LogLevel

def log_to_file(msg):
    with open('single_log.txt', 'a', encoding='utf8') as f:
        f.write(f'{msg}\n')

def log_to_file2(msg):
    with open('single_log_2.txt', 'a', encoding='utf8') as f:
        f.write(f'{msg}\n')


logger = Logger('INFO', LogLevel.INFO, handler=[log_to_file, log_to_file2])

logger.info('1')
logger.info(2)
logger.info('show value', 456)

In this demo, the log message will display on the screen.
Also you can find it in local file.

You can check all the demo in demo.py.

License

MIT License

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

SingleLog-2.0.4.tar.gz (1.4 MB view details)

Uploaded Source

Built Distribution

SingleLog-2.0.4-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file SingleLog-2.0.4.tar.gz.

File metadata

  • Download URL: SingleLog-2.0.4.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for SingleLog-2.0.4.tar.gz
Algorithm Hash digest
SHA256 b0021346b761343378f613f74289c543eb915534d3d30df35e8a7908661c8dfc
MD5 9463b0086456070b6a8dd51c8164e6ec
BLAKE2b-256 bd4cb6564fdd2d418d9c0a1ad094a128312c0275eff29e0a662160aea1d37898

See more details on using hashes here.

File details

Details for the file SingleLog-2.0.4-py3-none-any.whl.

File metadata

  • Download URL: SingleLog-2.0.4-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for SingleLog-2.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 ca70a198c546518221fc8a98d71a3ed0803bc595e659eb972e7e82f8da25cea4
MD5 5c985662432e835a0731ce9d2507e642
BLAKE2b-256 dd2fbd2db9eb9660b7d98075a4f7c1b7180144e8092cc31fe5feb352dfe4a4d1

See more details on using hashes here.

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