Skip to content

Commit 4d76e53

Browse files
committed
worker: Fix tracing level
This was unintentionally upgraded in rust-lang#11358...
1 parent a3d296b commit 4d76e53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/crates_io_worker/src/worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ impl<Context: Clone + Send + Sync + 'static> Worker<Context> {
9595
let _enter = span.enter();
9696
match result {
9797
Ok(_) => {
98-
warn!("Deleting successful job…");
98+
debug!("Deleting successful job…");
9999
storage::delete_successful_job(conn, job_id).await?
100100
}
101101
Err(error) => {

0 commit comments

Comments
 (0)