Skip to content

Commit

Permalink
removed debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
huberrob committed Mar 15, 2022
1 parent f424809 commit 3e2f6d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuji_server/helper/metadata_collector_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def parse_metadata(self):
if 'datacite.org/schema' in root_namespace:
xml_mapping = Mapper.XML_MAPPING_DATACITE.value
self.logger.info('FsF-F2-01M : Identified DataCite XML based on namespace')
print('XML Details: ',(self.target_url,root_namespace, root_element))
#print('XML Details: ',(self.target_url,root_namespace, root_element))
f = open("xml.txt", "a")
f.write(str(self.target_url)+'\t'+str(root_namespace)+'\t'+str(root_element)+'\r\n')
f.close()
Expand Down Expand Up @@ -323,5 +323,5 @@ def get_mapped_xml_metadata(self, tree, mapping):
res.pop('object_content_identifier_size', None)
res.pop('object_content_identifier_url', None)
#print(self.removew(res))
print(res)
#print(res)
return res

0 comments on commit 3e2f6d2

Please sign in to comment.