52 lines
1.7 KiB
Python
52 lines
1.7 KiB
Python
# Gnu General Public License - see LICENSE.TXT
|
|
|
|
import xbmc
|
|
import xbmcaddon
|
|
from .jsonrpc import JsonRpc
|
|
|
|
|
|
class SimpleLogging:
|
|
name = ""
|
|
enable_logging = False
|
|
|
|
def __init__(self, name):
|
|
settings = xbmcaddon.Addon()
|
|
prefix = settings.getAddonInfo('name')
|
|
self.name = prefix + '.' + name
|
|
self.enable_logging = settings.getSetting('log_debug') == "true"
|
|
|
|
# params = {"setting": "debug.showloginfo"}
|
|
# setting_result = json_rpc('Settings.getSettingValue').execute(params)
|
|
# current_value = setting_result.get("result", None)
|
|
# if current_value is not None:
|
|
# self.enable_logging = current_value.get("value", False)
|
|
# xbmc.log("LOGGING_ENABLED %s : %s" % (self.name, str(self.enable_logging)), level=xbmc.LOGDEBUG)
|
|
|
|
def __str__(self):
|
|
return "LoggingEnabled: " + str(self.enable_logging)
|
|
|
|
def info(self, fmt, *args, **kwargs):
|
|
log_line = self.name + "|INFO|" + self.log_line(fmt, *args)
|
|
xbmc.log(log_line, level=xbmc.LOGNOTICE)
|
|
|
|
def error(self, fmt, *args, **kwargs):
|
|
log_line = self.name + "|ERROR|" + self.log_line(fmt, *args)
|
|
xbmc.log(log_line, level=xbmc.LOGERROR)
|
|
|
|
def debug(self, fmt, *args, **kwargs):
|
|
if self.enable_logging:
|
|
log_line = self.name + "|DEBUG|" + self.log_line(fmt, *args)
|
|
xbmc.log(log_line, level=xbmc.LOGNOTICE)
|
|
|
|
@staticmethod
|
|
def log_line(fmt, *args):
|
|
new_args = []
|
|
# convert any unicode to utf-8 strings
|
|
for arg in args:
|
|
if isinstance(arg, unicode):
|
|
new_args.append(arg.encode("utf-8"))
|
|
else:
|
|
new_args.append(arg)
|
|
log_line = fmt.format(*new_args)
|
|
return log_line
|