We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17cf0ab commit 2056c19Copy full SHA for 2056c19
crates/datadog-serverless-compat/src/main.rs
@@ -46,8 +46,6 @@ const AGENT_HOST: &str = "0.0.0.0";
46
47
#[tokio::main]
48
pub async fn main() {
49
- info!("Stats test - buffer length: configurable / default 90, bucket duration: 10");
50
-
51
let log_level = env::var("DD_LOG_LEVEL")
52
.map(|val| val.to_lowercase())
53
.unwrap_or("info".to_string());
@@ -106,6 +104,7 @@ pub async fn main() {
106
104
107
105
#[allow(clippy::expect_used)]
108
tracing::subscriber::set_global_default(subscriber).expect("setting default subscriber failed");
+ info!("Stats test - buffer length: configurable / default 90, bucket duration: 10");
109
110
debug!("Logging subsystem enabled");
111
0 commit comments