From 9ed864228c19263e9c08a06f13fdae3db5278d92 Mon Sep 17 00:00:00 2001 From: Blake Fitch <blake.fitch@tuebingen.mpg.de> Date: Sun, 14 Jul 2024 14:20:30 +0200 Subject: [PATCH] add type to debugging of key value pairs for iRODS AVUS --- pymods/irods_utils/irods_utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pymods/irods_utils/irods_utils.py b/pymods/irods_utils/irods_utils.py index d75fc81..cc4aac0 100644 --- a/pymods/irods_utils/irods_utils.py +++ b/pymods/irods_utils/irods_utils.py @@ -204,7 +204,9 @@ def pydict_to_irods_avus( coll_or_obj, metadata_dict ): # Load the dict into a list of AVU ops for key, value in metadata_dict.items(): - logging.debug( "Create AVU OP list. ipath: " + coll_or_obj.path + " key: " + key + " value: " + value ) + logging.debug( "Create AVU OP list. ipath: " + coll_or_obj.path + + " key: " + key + " type(key): " + type(key) + + " value: " + value + " type(value): " + type(value) ) if value == "": value = " " -- GitLab