Skip to content

Commit

Permalink
feat(swcloader): tweak log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayankur31 committed Jul 3, 2024
1 parent 6baa176 commit db6d0a2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pyneuroml/swc/LoadSWC.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,11 @@ def get_nodes_with_multiple_children(self, type_id=None):
nodes.append(node)

if type_id is not None:
print(f"Found {len(nodes)} nodes of type {type_id} with multiple children.")
logger.debug(
f"Found {len(nodes)} nodes of type {type_id} with multiple children."
)
else:
logger.debug(f"Found {len(nodes)} nodes with multiple children.")

return nodes

Expand Down

0 comments on commit db6d0a2

Please sign in to comment.