From 495c0377cd3020a1971e9c01fd27a7a6a0620dfb Mon Sep 17 00:00:00 2001 From: DiMartinoXBMC Date: Sat, 11 Jul 2015 12:51:42 +0300 Subject: [PATCH] log fix --- python_libtorrent/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_libtorrent/functions.py b/python_libtorrent/functions.py index 641e376..1c682a1 100644 --- a/python_libtorrent/functions.py +++ b/python_libtorrent/functions.py @@ -30,7 +30,7 @@ class DownloaderClass(): xbmc.executebuiltin("XBMC.Notification(%s,%s,%s,%s)" % (__scriptname__,text,750,__icon__)) def log(msg): - xbmc.log("### [%s]: %s" % (__scriptname__,msg,), level=xbmc.LOGINFO ) + xbmc.log("### [%s]: %s" % (__scriptname__,msg,), level=xbmc.LOGNOTICE ) #print "### [%s]: %s" % (__scriptname__,msg,) def get_libname(platform):