Skip to content

Instantly share code, notes, and snippets.

@hatemogi
Created November 19, 2024 01:17
Show Gist options
  • Save hatemogi/3d2970ded1caa273f4a9beaf4c8ff918 to your computer and use it in GitHub Desktop.
Save hatemogi/3d2970ded1caa273f4a9beaf4c8ff918 to your computer and use it in GitHub Desktop.
tracing_subscriber 초기화
tracing_subscriber::registry()
.with(fmt::layer())
.with(
EnvFilter::try_from_default_env()
.unwrap_or_else(|_| EnvFilter::new("{crate_name}=debug")),
)
.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment