1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00

refactor: improve basics example

This commit is contained in:
Rob Ede
2025-05-12 06:40:45 +01:00
parent 92b0688df6
commit 03da1cb967
6 changed files with 29 additions and 29 deletions

View File

@ -9,7 +9,7 @@ pub fn init_standard_logger() {
.with_default_directive(LevelFilter::INFO.into())
.from_env_lossy(),
)
.with(tracing_subscriber::fmt::layer())
.with(tracing_subscriber::fmt::layer().without_time())
.init();
}