Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Downgrade some debug logs from warn to debug (#3450)
Browse files Browse the repository at this point in the history
  • Loading branch information
DrChat authored Aug 25, 2023
1 parent 6d8be1a commit 38cfa97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/agent/onefuzz-task/src/tasks/analysis/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ async fn poll_inputs(
}
message.delete().await?;
} else {
warn!("no new candidate inputs found, sleeping");
debug!("no new candidate inputs found, sleeping");
delay_with_jitter(EMPTY_QUEUE_DELAY).await;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/agent/onefuzz-task/src/tasks/merge/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ pub async fn spawn(config: &Config) -> Result<()> {
}
}
} else {
warn!("no new candidate inputs found, sleeping");
debug!("no new candidate inputs found, sleeping");
delay_with_jitter(EMPTY_QUEUE_DELAY).await;
};
}
Expand Down
2 changes: 1 addition & 1 deletion src/agent/onefuzz-task/src/tasks/merge/libfuzzer_merge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async fn process_message(config: &Config, input_queue: QueueClient) -> Result<()
}
Ok(())
} else {
warn!("no new candidate inputs found, sleeping");
debug!("no new candidate inputs found, sleeping");
delay_with_jitter(EMPTY_QUEUE_DELAY).await;
Ok(())
}
Expand Down

0 comments on commit 38cfa97

Please sign in to comment.