diff --git a/upub/worker/src/dispatcher.rs b/upub/worker/src/dispatcher.rs index e59cd24..23282e2 100644 --- a/upub/worker/src/dispatcher.rs +++ b/upub/worker/src/dispatcher.rs @@ -113,7 +113,7 @@ impl JobDispatcher for Context { }; if let Err(e) = res { - tracing::error!("failed processing job #{}: {e}", job.internal); + tracing::error!("failed processing job '{}': {e}", job.activity); let active = job.clone().repeat(); if let Err(e) = model::job::Entity::insert(active) .exec(_ctx.db())