1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# Copyright (c) 2015 Ultimaker B.V.
# Uranium is released under the terms of the LGPLv3 or higher.
from UM.Logger import LogOutput
import logging
try:
from colorlog import ColoredFormatter
logging_formatter = ColoredFormatter("%(purple)s%(asctime)s%(reset)s - %(log_color)s%(levelname)s%(reset)s - %(white)s%(message)s%(reset)s",
log_colors = {'DEBUG': 'cyan',
'INFO': 'green',
'WARNING': 'yellow',
'ERROR': 'red',
'CRITICAL': 'red,bg_white',
},
)
except:
from logging import Formatter
logging_formatter = Formatter("%(asctime)s - %(levelname)s - %(message)s")
class ConsoleLogger(LogOutput):
def __init__(self):
super().__init__()
self._logger = logging.getLogger(self._name) #Create python logger
self._logger.setLevel(logging.DEBUG)
stream_handler = logging.StreamHandler() # Log to stream
stream_handler.setFormatter(logging_formatter)
self._logger.addHandler(stream_handler)
## Log the message to console
# \param log_type "e" (error) , "i"(info), "d"(debug) or "w"(warning)
# \param message String containing message to be logged
def log(self, log_type, message):
if(log_type == "w"): # Warning
self._logger.warning(message)
elif(log_type == "i"): # Info
self._logger.info(message)
elif(log_type == "e"): # Error
self._logger.error(message)
elif(log_type == "d"):
self._logger.debug(message)
elif(log_type == "c"):
self._logger.critical(message)
else:
print("Unable to log. Received unknown type %s" % log_type)
|