plog

Logged process


License
Other
Install
pip install plog==0.16

Documentation

plog makes it easy to run processes and send their output to the logging system. For example

import plog
import logging

logging.basicConfig(level=logging.INFO)

process = plog.LoggedProcess(["ls"])
process.execute()