python module for easy logging
Project description
CCA Logging
Easy python logging module
Usage
Import this module, set logging output, optionally set logging level,
set a script level variable pointing to this modules log
variable,
then issue log.debug() etc.
You only need to set the output destination and logging level once, so
if you have multiple files in your project, set the output destination
and the logging level in the first one. In all the others just point a
script level variable to ccalogging.log
.
When using a log file, if the file already exists, new log messages are appended to it.
The default logging level is WARNING.
# first (or only) project file
import ccalogging # import the module
ccalogging.setConsoleOut() # set global logging destination
ccalogging.setDebug() # set global log level
log = ccalogging.log # point a script-level variable to the logger
log.info("Logging has been started")
# subsequent project files
import ccalogging # import the module
log = ccalogging.log # point a script-level variable to the logger
log.warning("continuing to log to the same location as setup in the first file")
Options
It is possible to log to the console and/or to a file. When logging to the
console logs go to stderr
by default.
setDebug()
Sets the global loglevel to be logging.DEBUG
setInfo()
Sets the global loglevel to be logging.INFO
setWarn()
Sets the global loglevel to be logging.WARNING. This is the default level, if you don't set a level.
setError()
Sets the global loglevel to be logging.ERROR
setLogFile(fqfn)
Sends log output to a file
parameters:
fqfn
: the fully qualified path name of the log file
fformat
: message format - defaults to: "%(asctime)s [%(levelname)-5.5s] %(message)s"
datefmt
: date format - defaults to: "%d/%m/%Y %H:%M:%S"
setConsoleOut()
Sends log output to the console
parameters:
STDOUT
: if True
send to stdout
- defaults to False (stderr
)
cformat
: message format - defaults to: "%(asctime)s [%(levelname)-5.5s] %(message)s"
datefmt
: date format - defaults to: "%d/%m/%Y %H:%M:%S"
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
Built Distribution
Hashes for ccalogging-0.3.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54fb73b430025f53f923eab33c166a1b3f3bd77faf790924c8a30cc331c9aa87 |
|
MD5 | 803b08f4bdebf70002a4bd0ba8b34306 |
|
BLAKE2b-256 | b9933c5e2747a8fc8c89c5f11044103cbdadd7bd7a7f24849b211da328b38e7b |