From 859a779ba58f1f419b2949c8666a7edf7de9f267 Mon Sep 17 00:00:00 2001 From: raj_mathe Date: Thu, 14 Apr 2022 12:03:00 +0200 Subject: [PATCH] master > master: code-rust - minor --- code/rust/src/graphs/tarjan.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/rust/src/graphs/tarjan.rs b/code/rust/src/graphs/tarjan.rs index fcc7aea..1637fe5 100644 --- a/code/rust/src/graphs/tarjan.rs +++ b/code/rust/src/graphs/tarjan.rs @@ -173,8 +173,8 @@ impl Context } fn log_info(self: &Self, u: &T) { - let info = self.get_info(&u); if !self.debug { return; } + let info = self.get_info(&u); log_debug!("node, index, component: ({}, {}, {})", info.node, info.index, info.root); } }