From 9a28ff9d7330c7485a980ffd7f991d211a4a04e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joel=20K=C3=A5berg?= Date: Mon, 25 Mar 2013 09:26:11 +0100 Subject: [PATCH] more clogging! --- TorrentToMedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TorrentToMedia.py b/TorrentToMedia.py index 8efc2f37..012d2951 100755 --- a/TorrentToMedia.py +++ b/TorrentToMedia.py @@ -99,7 +99,7 @@ def main(inputDirectory, inputName, inputCategory, inputHash): if re.search(r'\d+', os.path.splitext(fileName)[1]): # find part numbers in second "extension" from right part = int(re.search(r'\d+', os.path.splitext(fileName)[1]).group()) if part == 1: # we only want to extract the primary part. - Logger.info("MAIN: Found primary part of a multi-part archive %s. Extracting", file) + Logger.debug("MAIN: Found primary part of a multi-part archive %s. Extracting", file) else: Logger.debug("MAIN: Found part %s of a multi-part archive %s. Ignoring", part, file) continue