Skip to content

Commit

Permalink
chore: display log.file.limit and prefix_filter (#16713)
Browse files Browse the repository at this point in the history
  • Loading branch information
TCeason authored Oct 29, 2024
1 parent 9b6aae1 commit 7d089b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/tracing/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ impl Display for FileConfig {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(
f,
"enabled={}, level={}, dir={}, format={}",
self.on, self.level, self.dir, self.format
"enabled={}, level={}, dir={}, format={}, limit={}, prefix_filter={}",
self.on, self.level, self.dir, self.format, self.limit, self.prefix_filter
)
}
}
Expand Down

0 comments on commit 7d089b1

Please sign in to comment.