No project description provided
Project description
jlogr
A simple python logger written in Rust.
Logs in one format only: {timestamp} :: {log level} :: {message}
Example:
import info from jlogr
info("hello")
If you use the Logger class, you can save to a file.
import Logger from jlogr
logger = Logger("my_file.log")
logger.info("this will go to the file")
You might be taking a large amount of logs that you'd like to buffer.
import Logger from jlogr
logger = Logger("my_file.log")
for i in range(1000):
logger.push(f"this is log of index {i}", "info")
logger.dump()
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
jlogr-0.1.230.tar.gz
(13.0 kB
view hashes)
Built Distribution
Close
Hashes for jlogr-0.1.230-cp39-abi3-manylinux_2_34_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9af4b91600b5aa6c835b87c3fca4065819cda9629c011e80ffb4bdc599a77672 |
|
MD5 | ab6e834db4829c6523157f6b2c93e678 |
|
BLAKE2b-256 | 2979c5d59f84f09dddb9394681251f99461c37afe77d9f82250921382e3c75ab |