Skip to content

Commit

Permalink
remove debug and set to trace
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola committed Jun 22, 2024
1 parent 0cf1b18 commit d6083af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/orchestrator/src/network/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,9 @@ impl NetworkNode {
let mut q = 0_usize;
let logs = self.logs().await?;
for line in logs.lines() {
println!("line is {line}");
trace!("line is {line}");
if match_fn(line) {
println!("pattern {pattern} match in line {line}");
trace!("pattern {pattern} match in line {line}");
q += 1;
if q >= count {
return Ok(());
Expand Down

0 comments on commit d6083af

Please sign in to comment.