Skip to content

Commit

Permalink
chore(query): remove useless new line for query log
Browse files Browse the repository at this point in the history
  • Loading branch information
zhang2014 committed Nov 16, 2024
1 parent 3dbc785 commit 6a9fe3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/tracing/src/loggers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub fn get_layout(format: &str) -> Layout {
}

fn identical_layout() -> Layout {
CustomLayout::new(|record: &Record| Ok(format!("{}\n", record.args()).into_bytes())).into()
CustomLayout::new(|record: &Record| Ok(format!("{}", record.args()).into_bytes())).into()
}

fn text_layout() -> Layout {
Expand Down

0 comments on commit 6a9fe3d

Please sign in to comment.