Skip to content

Commit

Permalink
temp: print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed May 5, 2024
1 parent dd5bfe8 commit 471d822
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nx_arangodb/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ def from_networkx_arangodb(
)
end_time = time.time()
logger.debug(f"load took {end_time - start_time} seconds")
print(f"ADB -> ADJ load took {end_time - start_time} seconds")

# Copied from nx.convert.to_networkx_graph
try:
Expand Down Expand Up @@ -331,6 +332,7 @@ def nxcg_from_networkx_arangodb(
)
end_time = time.time()
logger.debug(f"load took {end_time - start_time} seconds")
print(f"ADB -> COO load took {end_time - start_time} seconds")

G.src_indices = src_indices
G.dst_indices = dst_indices
Expand Down

0 comments on commit 471d822

Please sign in to comment.