Skip to content

Commit 71c0868

Browse files
committed
Change: Severity of logging messages
1 parent 8aaa03d commit 71c0868

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bigtree/tree/modify.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,10 +562,10 @@ def copy_or_shift_logic(
562562

563563
# Reassign from_node to new parent
564564
if copy:
565-
logging.info(f"Copying {from_node.node_name} to {to_node.node_name}")
565+
logging.debug(f"Copying {from_node.node_name} to {to_node.node_name}")
566566
from_node = from_node.copy()
567567
if merge_children:
568-
logging.info(
568+
logging.debug(
569569
f"Reassigning children from {from_node.node_name} to {to_node.node_name}"
570570
)
571571
for children in from_node.children:

0 commit comments

Comments
 (0)