1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-02-22 18:33:18 +01:00

Fix example.

This commit is contained in:
Luca Palmieri 2020-09-28 08:49:56 +01:00
parent 34bc4d713f
commit 267b38466a
2 changed files with 2 additions and 0 deletions

View File

@ -25,3 +25,4 @@ uuid = { version = "0.8.1", features = ["v4"] }
[dev-dependencies]
tracing-subscriber = { version = "0.2.12", features = ["registry", "env-filter"] }
tracing-bunyan-formatter = "0.1.6"
tracing-log = "0.1.1"

View File

@ -46,6 +46,7 @@ use uuid::Uuid;
/// use actix_web::App;
/// use tracing::{Subscriber, subscriber::set_global_default};
/// use tracing_actix_web::TracingLogger;
/// use tracing_log::LogTracer;
/// use tracing_bunyan_formatter::{BunyanFormattingLayer, JsonStorageLayer};
/// use tracing_subscriber::{layer::SubscriberExt, EnvFilter, Registry};
///