Skip to content

Commit

Permalink
Update logging.info to logging.debug to make it consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
JoongunPark committed Oct 14, 2024
1 parent 97ef455 commit 2ab39be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/converter/pytorch_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def convert_ctrl_dep_to_data_dep(
for sync_dep in json_node.sync_dep:
if sync_dep not in current_node.data_deps:
current_node.data_deps.append(sync_dep)
logging.info(
logging.debug(
f"Node ID {current_node.id} now has an synchonization dependency on Node ID {sync_dep}"
)

Expand Down

0 comments on commit 2ab39be

Please sign in to comment.