mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-21 19:40:59 +00:00
Don't log job arguments
This commit is contained in:
parent
85278110ce
commit
637842d298
2 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "background-jobs-core"
|
||||
description = "Core types for implementing an asynchronous jobs processor"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
license = "AGPL-3.0"
|
||||
authors = ["asonix <asonix@asonix.dog>"]
|
||||
repository = "https://git.asonix.dog/asonix/background-jobs"
|
||||
|
|
|
@ -151,7 +151,6 @@ fn job_span(job: &JobInfo) -> Span {
|
|||
execution_id = tracing::field::display(&Uuid::new_v4()),
|
||||
job.id = tracing::field::display(&job.id()),
|
||||
job.name = tracing::field::display(&job.name()),
|
||||
job.args = tracing::field::debug(&job.args()),
|
||||
job.execution_time = tracing::field::Empty,
|
||||
exception.message = tracing::field::Empty,
|
||||
exception.details = tracing::field::Empty,
|
||||
|
|
Loading…
Reference in a new issue