From a4673b03777322ebed8acf665b399c8219276544 Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Mon, 14 Mar 2016 15:01:38 +0100 Subject: [PATCH] Less logging for downloading in chunks --- resources/lib/PlexFunctions.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/resources/lib/PlexFunctions.py b/resources/lib/PlexFunctions.py index 7d05172d..fb96485c 100644 --- a/resources/lib/PlexFunctions.py +++ b/resources/lib/PlexFunctions.py @@ -237,8 +237,6 @@ def DownloadChunks(url, containerSize): xml = None pos = 0 errorCounter = 0 - logMsg(title, 'Downloading allLeaves of %s in chunks of %s' - % (url, str(containerSize)), 1) while errorCounter < 10: args = { 'X-Plex-Container-Size': containerSize, @@ -274,7 +272,6 @@ def DownloadChunks(url, containerSize): if errorCounter == 10: logMsg(title, 'Fatal error while downloading chunks for %s' % url, -1) return None - logMsg(title, 'Done downloading chunks', 1) return xml