mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 10:42:08 +00:00
parent
61225ecef7
commit
b0ce25b67a
1 changed files with 2 additions and 2 deletions
|
@ -486,9 +486,9 @@ impl Server {
|
||||||
let queue_duration_ms = total_duration_ms - processing_duration_ms;
|
let queue_duration_ms = total_duration_ms - processing_duration_ms;
|
||||||
match result {
|
match result {
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
tracing::error!(%error, ?total_duration_ms, ?processing_duration_ms, ?queue_duration_ms, "error handling message")
|
tracing::error!(%error, total_duration_ms, processing_duration_ms, queue_duration_ms, "error handling message")
|
||||||
}
|
}
|
||||||
Ok(()) => tracing::info!(?total_duration_ms, ?processing_duration_ms, ?queue_duration_ms, "finished handling message"),
|
Ok(()) => tracing::info!(total_duration_ms, processing_duration_ms, queue_duration_ms, "finished handling message"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.instrument(span)
|
.instrument(span)
|
||||||
|
|
Loading…
Reference in a new issue