fix typo in prometheus_metrics_example (#2627)

Signed-off-by: Vigith Maurice <[email protected]>
This commit is contained in:
Vigith Maurice
2024-03-02 21:51:18 +01:00
committed by GitHub
parent b03f6c1184
commit b6b203b306
+1 -1
View File
@@ -64,7 +64,7 @@ async fn main() {
tracing_subscriber::registry()
.with(
tracing_subscriber::EnvFilter::try_from_default_env()
.unwrap_or_else(|_| "example_todos=debug,tower_http=debug".into()),
.unwrap_or_else(|_| "example_prometheus_metrics=debug,tower_http=debug".into()),
)
.with(tracing_subscriber::fmt::layer())
.init();