8000 worker: Fix tracing level (#11362) · rust-lang/crates.io@da194dd · GitHub
[go: up one dir, main page]

Skip to content

Commit da194dd

Browse files
authored
worker: Fix tracing level (#11362)
This was unintentionally upgraded in #11358...
1 parent a3d296b commit da194dd

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)
0