Skip to content
Snippets Groups Projects
Commit 9ed86422 authored by Blake Fitch's avatar Blake Fitch
Browse files

add type to debugging of key value pairs for iRODS AVUS

parent 0a6ae300
No related branches found
No related tags found
No related merge requests found
......@@ -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 = " "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment