Skip to content

Commit 9496f67

Browse files
abhizermihaibudiu
authored andcommitted
feldera-observability: logging: log all fields
Fixes: #5602 Signed-off-by: Abhinav Gyawali <22275402+abhizer@users.noreply.github.com>
1 parent 7b8b227 commit 9496f67

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/feldera-observability/src/json_logging.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,9 @@ fn plain_text_fields() -> impl for<'writer> tracing_subscriber::fmt::FormatField
375375
"tenant" => {
376376
write!(writer, " tenant={value:?}")?;
377377
}
378-
_ => {}
378+
_ => {
379+
write!(writer, "{field}={value:?}")?;
380+
}
379381
}
380382
Ok(())
381383
})

0 commit comments

Comments
 (0)