client library Loglet, the Web-based logging system
Project description
Loglet is a tiny tool for keeping tabs on long-running processes. Send log messages to Loglet using a simple POST request and then view them in your browser or subscribe to an Atom feed.
This Python package provides a small client library of Loglet. You can creates a new loglet simply by this and send messages by using standard logging interface. For example:
import logging from loglet import LogletHandler logger = logging.getLogger(__name__) loglet = LogletHandler(mode='threading') logger.addHandler(loglet) logger.setLevel(logging.DEBUG) logger.info('hello') logger.error('something horrible has happened')
If you have a loglet already, you can specify logid explicitly:
loglet = LogletHandler('2LNbYgNEAaezJduj')
There are 4 types of sync/async modes:
- 'sync' (default)
Simply sends all logs synchronously. It can affect serious inefficiency to your application.
- 'threading'
Sends all logs asynchronously by using standard threading module. Threads are rich and heavy to use for just input/output.
- 'multiprocessing'
Sends all logs asynchronously by using standard multiprocessing module. It requires to use Python 2.6 or higher. It forks for every message internally.
- 'gevent'
Sends all logs asynchronously by greenlet (coroutine). It requires to install gevent. Most efficient way though additional dependency is required.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file loglet-1.0.tar.gz
.
File metadata
- Download URL: loglet-1.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 616958549f1b334366fc65c02132bec800d62b10d43678152f97eb2c7fdad15f |
|
MD5 | e26c9596a2c8169d3d44dfdf5e0f4dc0 |
|
BLAKE2b-256 | 3182354c0f472b5cb291cceda67259e585feb350756d5296f049a1494a867b3b |