Skip to content

Commit

Permalink
chore: set tracing level to INFO
Browse files Browse the repository at this point in the history
  • Loading branch information
NilsOveTen committed Dec 8, 2023
1 parent aac9f5b commit 634220c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/bin/fdk-concept-event-publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn main() {

tracing_subscriber::fmt()
.json()
.with_max_level(tracing::Level::DEBUG)
.with_max_level(tracing::Level::INFO)
.with_target(false)
.with_current_span(false)
.init();
Expand Down
2 changes: 1 addition & 1 deletion src/bin/fdk-data-service-event-publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn main() {

tracing_subscriber::fmt()
.json()
.with_max_level(tracing::Level::DEBUG)
.with_max_level(tracing::Level::INFO)
.with_target(false)
.with_current_span(false)
.init();
Expand Down
2 changes: 1 addition & 1 deletion src/bin/fdk-dataset-event-publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn main() {

tracing_subscriber::fmt()
.json()
.with_max_level(tracing::Level::DEBUG)
.with_max_level(tracing::Level::INFO)
.with_target(false)
.with_current_span(false)
.init();
Expand Down
2 changes: 1 addition & 1 deletion src/bin/fdk-event-event-publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn main() {

tracing_subscriber::fmt()
.json()
.with_max_level(tracing::Level::DEBUG)
.with_max_level(tracing::Level::INFO)
.with_target(false)
.with_current_span(false)
.init();
Expand Down
2 changes: 1 addition & 1 deletion src/bin/fdk-information-model-event-publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn main() {

tracing_subscriber::fmt()
.json()
.with_max_level(tracing::Level::DEBUG)
.with_max_level(tracing::Level::INFO)
.with_target(false)
.with_current_span(false)
.init();
Expand Down
2 changes: 1 addition & 1 deletion src/bin/fdk-service-event-publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn main() {

tracing_subscriber::fmt()
.json()
.with_max_level(tracing::Level::DEBUG)
.with_max_level(tracing::Level::INFO)
.with_target(false)
.with_current_span(false)
.init();
Expand Down

0 comments on commit 634220c

Please sign in to comment.