From 340d6887d01f8e56092ca79c265662ffd7cc3e9d Mon Sep 17 00:00:00 2001
From: angelblue05 <angelblue.dev@gmail.com>
Date: Sun, 9 Sep 2018 23:46:03 -0500
Subject: [PATCH] Reduce logging for unzip

---
 resources/lib/helper/utils.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/resources/lib/helper/utils.py b/resources/lib/helper/utils.py
index 2b10496e..20dac5aa 100644
--- a/resources/lib/helper/utils.py
+++ b/resources/lib/helper/utils.py
@@ -316,7 +316,6 @@ def unzip_recursive(path, dirs, dest):
         dirs_dir = os.path.join(path, directory.decode('utf-8'))
         dest_dir = os.path.join(dest, directory.decode('utf-8'))
         xbmcvfs.mkdir(dest_dir)
-        LOG.info("unzip: %s to %s", dirs_dir, dest_dir)
 
         dirs2, files = xbmcvfs.listdir(dirs_dir)
 
@@ -331,7 +330,7 @@ def unzip_file(path, dest):
     ''' Unzip specific file. Path should start with zip://
     '''
     xbmcvfs.copy(path, dest)
-    LOG.info("unzip: %s to %s", path, dest)
+    LOG.debug("unzip: %s to %s", path, dest)
 
 def get_zip_directory(path, folder):