mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-12 21:26:10 +00:00
Reduce logging for unzip
This commit is contained in:
parent
3867946af0
commit
340d6887d0
1 changed files with 1 additions and 2 deletions
|
@ -316,7 +316,6 @@ def unzip_recursive(path, dirs, dest):
|
||||||
dirs_dir = os.path.join(path, directory.decode('utf-8'))
|
dirs_dir = os.path.join(path, directory.decode('utf-8'))
|
||||||
dest_dir = os.path.join(dest, directory.decode('utf-8'))
|
dest_dir = os.path.join(dest, directory.decode('utf-8'))
|
||||||
xbmcvfs.mkdir(dest_dir)
|
xbmcvfs.mkdir(dest_dir)
|
||||||
LOG.info("unzip: %s to %s", dirs_dir, dest_dir)
|
|
||||||
|
|
||||||
dirs2, files = xbmcvfs.listdir(dirs_dir)
|
dirs2, files = xbmcvfs.listdir(dirs_dir)
|
||||||
|
|
||||||
|
@ -331,7 +330,7 @@ def unzip_file(path, dest):
|
||||||
''' Unzip specific file. Path should start with zip://
|
''' Unzip specific file. Path should start with zip://
|
||||||
'''
|
'''
|
||||||
xbmcvfs.copy(path, dest)
|
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):
|
def get_zip_directory(path, folder):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue