Skip to content

ks93/xlogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

xlogger

A cross-project logger instance for logging across files in a project. Basically a convenience layer on top of Python's logging module.

By importing the logger instance into different files in a project, the logger automatically writes to the same file, and each log line states which file it came from.

Creates a new log file every midnight.

install:

pip install git+https://github.com/ks93/xlogger.git

basic use:

# app.py
from xlogger.logger import logger
logger.info('foo') # 2020-03-22 23:12:19,692 - app - INFO - foo
# utils.py
from xlogger.logger import logger
logger.info('bar') # 2020-03-22 23:22:11,578 - utils - INFO - bar

These two calls, also result in a log file, app.log:

2020-03-22 23:12:19,692 - app - INFO - foo
2020-03-22 23:22:11,578 - utils - INFO - bar

Otherwise, logger is used exactly like in Python's logging module.

setup:

Available setups are: log file path, log level for file and log level for console. Choose one of the follwing log levels (in order): DEBUG, INFO, WARNING, ERROR, CRITICAL

ubuntu:

export LOG_FILE_PATH=/your/logfile/path/
export LOG_LEVEL_FILE={DEBUG/INFO/WARNING/ERROR/CRITICAL}
export LOG_LEVEL_CONSOLE={DEBUG/INFO/WARNING/ERROR/CRITICAL}

windows:

set LOG_FILE_PATH="/your/logfile/path/"
set LOG_LEVEL_FILE={"DEBUG"/"INFO"/"WARNING"/"ERROR"/"CRITICAL"}
set LOG_LEVEL_CONSOLE={"DEBUG"/"INFO"/"WARNING"/"ERROR"/"CRITICAL"}

About

Cross-project logger instance for Python

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages