Skip to content

Commit

Permalink
chore: change storage log level to WARN for playground (#8406)
Browse files Browse the repository at this point in the history
  • Loading branch information
xxchan authored Mar 9, 2023
1 parent 6f3eb54 commit 86188ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd_all/src/bin/risingwave.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ fn main() -> Result<()> {
Box::new(move |_: Vec<String>| {
let settings = risingwave_rt::LoggerSettings::new()
.enable_tokio_console(false)
.with_target("risingwave_storage", Level::INFO);
.with_target("risingwave_storage", Level::WARN);
risingwave_rt::init_risingwave_logger(settings);

risingwave_rt::main_okk(playground())
Expand Down

0 comments on commit 86188ef

Please sign in to comment.