file_manager: Add debug logging to metadata response
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
91419db726
commit
6c58bba8c5
|
@ -214,6 +214,7 @@ class FileManager:
|
||||||
proc_resp = json.loads(result.strip())
|
proc_resp = json.loads(result.strip())
|
||||||
except Exception:
|
except Exception:
|
||||||
logging.exception("file_manager: unable to load metadata")
|
logging.exception("file_manager: unable to load metadata")
|
||||||
|
logging.debug(result)
|
||||||
return
|
return
|
||||||
proc_log = proc_resp.get('log', [])
|
proc_log = proc_resp.get('log', [])
|
||||||
for log_msg in proc_log:
|
for log_msg in proc_log:
|
||||||
|
|
Loading…
Reference in New Issue