Minori informazioni con log disabilitato

This commit is contained in:
Alhaziel01
2020-11-25 17:54:25 +01:00
parent 9f11eac225
commit 4f498a05f8
157 changed files with 720 additions and 726 deletions
+6 -6
View File
@@ -24,7 +24,7 @@ except:
def mainlist(item):
logger.info()
logger.debug()
itemlist = []
for name, thumb, data in read_favourites():
@@ -81,7 +81,7 @@ def save_favourites(favourites_list):
def addFavourite(item):
logger.info()
logger.debug()
# logger.debug(item.tostring('\n'))
# If you get here through the context menu, you must retrieve the action and channel parameters
@@ -100,7 +100,7 @@ def addFavourite(item):
def delFavourite(item):
logger.info()
logger.debug()
# logger.debug(item.tostring('\n'))
if item.from_title:
@@ -118,7 +118,7 @@ def delFavourite(item):
def renameFavourite(item):
logger.info()
logger.debug()
# logger.debug(item.tostring('\n'))
# Find the item we want to rename in favorites.xml
@@ -137,7 +137,7 @@ def renameFavourite(item):
##################################################
# Features to migrate old favorites (.txt)
def readbookmark(filepath):
logger.info()
logger.debug()
try:
import urllib.parse as urllib
except ImportError:
@@ -233,6 +233,6 @@ try:
if config.get_setting("bookmarkpath") != "":
check_bookmark(config.get_setting("bookmarkpath"))
else:
logger.info("No path to old version favorites")
logger.debug("No path to old version favorites")
except:
pass