The current syntax is a little awkward:
from console_logging import console
q = console.Console()
q.error('abcde')
compare with other projects:
import colorlog
colorlog.error('abcde')
from logzero import logger
logger.error('abcde')
import coloredlogs, logging
coloredlogs.install()
logging.error('abcde')
The current syntax is a little awkward:
compare with other projects: