We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eef375 commit d0cb344Copy full SHA for d0cb344
src/utils/pgwire/src/pg_protocol.rs
@@ -391,6 +391,13 @@ where
391
392
// Query log.
393
let fut = async move {
394
+ if !tracing::Span::current().is_none() {
395
+ tracing::info!(
396
+ target: PGWIRE_QUERY_LOG,
397
+ status = "started",
398
+ );
399
+ }
400
+
401
let start = Instant::now();
402
let result = fut.await;
403
let elapsed = start.elapsed();
0 commit comments