Skip to content

Commit

Permalink
Update tracing-glog requirement from 0.2 to 0.3 (#156)
Browse files Browse the repository at this point in the history
Updates the requirements on [tracing-glog](https://github.com/davidbarsky/tracing-glog) to permit the latest version.
- [Release notes](https://github.com/davidbarsky/tracing-glog/releases)
- [Commits](davidbarsky/tracing-glog@v0.2.0...v0.3.0)

---
updated-dependencies:
- dependency-name: tracing-glog
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 7, 2023
1 parent 548fb5a commit 0761b8c
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion ractor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function_name = "0.3"
paste = "1"
rand = "0.8"
tokio = { version = "1", features = ["rt", "time", "sync", "macros", "rt-multi-thread", "tracing"] }
tracing-glog = "0.2"
tracing-glog = "0.3"
tracing-subscriber = { version = "0.3", features = ["env-filter"]}
tracing-test = "0.2"

Expand Down
2 changes: 1 addition & 1 deletion ractor/examples/counter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ fn init_logging() {
.with_ansi(stderr().is_terminal())
.with_writer(std::io::stderr)
.event_format(Glog::default().with_timer(tracing_glog::LocalTime::default()))
.fmt_fields(GlogFields);
.fmt_fields(GlogFields::default().compact());

let filter = vec![dir]
.into_iter()
Expand Down
2 changes: 1 addition & 1 deletion ractor/examples/monte_carlo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ fn init_logging() {
.with_ansi(stderr().is_terminal())
.with_writer(std::io::stderr)
.event_format(Glog::default().with_timer(tracing_glog::LocalTime::default()))
.fmt_fields(GlogFields);
.fmt_fields(GlogFields::default().compact());

let filter = vec![dir]
.into_iter()
Expand Down
2 changes: 1 addition & 1 deletion ractor/examples/output_port.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ fn init_logging() {
.with_ansi(stderr().is_terminal())
.with_writer(std::io::stderr)
.event_format(Glog::default().with_timer(tracing_glog::LocalTime::default()))
.fmt_fields(GlogFields);
.fmt_fields(GlogFields::default().compact());

let filter = vec![dir]
.into_iter()
Expand Down
2 changes: 1 addition & 1 deletion ractor/examples/philosophers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ fn init_logging() {
.with_ansi(stderr().is_terminal())
.with_writer(std::io::stderr)
.event_format(Glog::default().with_timer(tracing_glog::LocalTime::default()))
.fmt_fields(GlogFields);
.fmt_fields(GlogFields::default().compact());

let filter = vec![dir]
.into_iter()
Expand Down
2 changes: 1 addition & 1 deletion ractor/examples/ping_pong.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ fn init_logging() {
.with_ansi(stderr().is_terminal())
.with_writer(std::io::stderr)
.event_format(Glog::default().with_timer(tracing_glog::LocalTime::default()))
.fmt_fields(GlogFields);
.fmt_fields(GlogFields::default().compact());

let filter = vec![dir]
.into_iter()
Expand Down
2 changes: 1 addition & 1 deletion ractor/examples/supervisor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fn init_logging() {
.with_ansi(stderr().is_terminal())
.with_writer(std::io::stderr)
.event_format(Glog::default().with_timer(tracing_glog::LocalTime::default()))
.fmt_fields(GlogFields);
.fmt_fields(GlogFields::default().compact());

let filter = vec![dir]
.into_iter()
Expand Down
2 changes: 1 addition & 1 deletion ractor_cluster_integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ rustls-pemfile = "1.0"
rustyrepl = { version = "0.2", features = ["async"] }
tokio = { version = "1", features = ["rt", "time", "sync", "macros", "rt-multi-thread", "signal", "tracing"] }
tracing = "0.1"
tracing-glog = "0.2"
tracing-glog = "0.3"
tracing-subscriber = { version = "0.3", features = ["env-filter"]}
webpki = "0.22"
2 changes: 1 addition & 1 deletion ractor_cluster_integration_tests/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ fn init_logging(directives: Vec<Directive>) {
.with_ansi(stderr().is_terminal())
.with_writer(std::io::stderr)
.event_format(Glog::default().with_timer(tracing_glog::LocalTime::default()))
.fmt_fields(GlogFields);
.fmt_fields(GlogFields::default().compact());

let filter = directives
.into_iter()
Expand Down
2 changes: 1 addition & 1 deletion ractor_playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ ractor_cluster = { path = "../ractor_cluster" }
# rustyrepl = "0.1"
tokio = { version = "1", features = ["rt", "time", "sync", "macros", "rt-multi-thread", "signal", "tracing"] }
tracing = "0.1"
tracing-glog = "0.2"
tracing-glog = "0.3"
tracing-subscriber = { version = "0.3", features = ["env-filter"]}
2 changes: 1 addition & 1 deletion ractor_playground/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fn init_logging(directives: Vec<Directive>) {
.with_ansi(stderr().is_terminal())
.with_writer(std::io::stderr)
.event_format(Glog::default().with_timer(tracing_glog::LocalTime::default()))
.fmt_fields(GlogFields);
.fmt_fields(GlogFields::default().compact());

let filter = directives
.into_iter()
Expand Down

0 comments on commit 0761b8c

Please sign in to comment.