8000 worker: Fix tracing level by Turbo87 · Pull Request #11362 · rust-lang/crates.io · GitHub
[go: up one dir, main page]

Skip to content

worker: Fix tracing level #11362

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
worker: Fix tracing level
This was unintentionally upgraded in #11358...
  • Loading branch information
Turbo87 committed Jun 14, 2025
commit 4d76e53ffd5b5edbffc45add472b25e4acd4c7c8
2 changes: 1 addition & 1 deletion crates/crates_io_worker/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ impl<Context: Clone + Send + Sync + 'static> Worker<Context> {
let _enter = span.enter();
match result {
Ok(_) => {
warn!("Deleting successful job…");
debug!("Deleting successful job…");
storage::delete_successful_job(conn, job_id).await?
}
Err(error) => {
Expand Down
0