file_manager: Add debug logging to metadata response

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Arksine 2020-07-14 07:19:44 -04:00
parent 91419db726
commit 6c58bba8c5
1 changed files with 1 additions and 0 deletions

View File

@ -214,6 +214,7 @@ class FileManager:
proc_resp = json.loads(result.strip())
except Exception:
logging.exception("file_manager: unable to load metadata")
logging.debug(result)
return
proc_log = proc_resp.get('log', [])
for log_msg in proc_log: