Skip to content

Commit

Permalink
Use debug level for logging node types
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronwolen committed Jul 10, 2024
1 parent b6a5287 commit 83fa077
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tiledb/cloud/soma/mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,13 +291,13 @@ def build_collection_mapper_workflow_graph(
access_credentials_name=access_credentials_name,
name=experiment_name,
)
logger.info("A: node output is a %s" % type(node_output))
logger.debug("A: node output is a %s" % type(node_output))

node_outputs[soma_experiment_uri] = node_output

def collect(node_outputs):
for node_name, node_output in node_outputs.items():
logger.info("B: node output %s is a %s" % (node_name, type(node_output)))
logger.debug("B: node output %s is a %s" % (node_name, type(node_output)))
return node_outputs

grf.submit(
Expand Down

0 comments on commit 83fa077

Please sign in to comment.