Less logging

This commit is contained in:
tomkat83 2016-09-11 16:05:05 +02:00
parent c4de7587bf
commit 61a2457a1d

View file

@ -47,9 +47,6 @@ class ImageCacheThread(threading.Thread):
self.xbmc_password = password self.xbmc_password = password
def run(self): def run(self):
log.debug("Image Caching Thread Processing: %s", self.url_to_process)
try: try:
response = requests.head( response = requests.head(
url=( url=(
@ -60,6 +57,4 @@ class ImageCacheThread(threading.Thread):
# We don't need the result # We don't need the result
except Exception: except Exception:
pass pass
log.debug("Image Caching Thread Exited")
self.is_finished = True self.is_finished = True