master > master: code-rust - minor

This commit is contained in:
RD 2022-04-14 12:03:00 +02:00
parent b6cea5920f
commit 859a779ba5

View File

@ -173,8 +173,8 @@ impl<T> Context<T>
} }
fn log_info(self: &Self, u: &T) { fn log_info(self: &Self, u: &T) {
let info = self.get_info(&u);
if !self.debug { return; } if !self.debug { return; }
let info = self.get_info(&u);
log_debug!("node, index, component: ({}, {}, {})", info.node, info.index, info.root); log_debug!("node, index, component: ({}, {}, {})", info.node, info.index, info.root);
} }
} }