Skip to content

Commit 1cf3b83

Browse files
authored
Merge pull request #172 from erikh/tracing
Changing logging implementation to use tracing package
2 parents c67f814 + 64bae5b commit 1cf3b83

File tree

11 files changed

+237
-86
lines changed

11 files changed

+237
-86
lines changed

Cargo.lock

Lines changed: 152 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ regex = ">= 0"
1818
anyhow = ">= 0"
1919
clap = { version = "^3", features = ["derive"] }
2020
ipnetwork = ">= 0"
21-
trust-dns-resolver = { version = "^0.21.0", features = ["tokio-runtime", "dns-over-openssl"], git = "https://github.com/bluejekyll/trust-dns" }
22-
trust-dns-server = { version = "^0.21.0", features = ["trust-dns-resolver", "dns-over-openssl"], git = "https://github.com/bluejekyll/trust-dns" }
21+
trust-dns-resolver = { version = "^0.21.0", features = ["tokio-runtime", "dns-over-openssl"], git = "https://github.com/erikh/trust-dns", branch = "tracing" }
22+
trust-dns-server = { version = "^0.21.0", features = ["trust-dns-resolver", "dns-over-openssl"], git = "https://github.com/erikh/trust-dns", branch = "tracing" }
2323
tokio = { version = "1", features = ["full"] }
2424
zerotier-central-api = { version = "= 1.0.3" }
2525
zerotier-one-api = { version = "= 1.0.5" }
@@ -30,8 +30,8 @@ toml = ">=0"
3030
tinytemplate = ">= 0"
3131
rand = ">= 0"
3232
num_cpus = ">=0"
33-
log = ">=0"
34-
env_logger = ">=0"
33+
tracing = "0.1"
34+
tracing-subscriber = "0.2"
3535
hex = ">=0"
3636
openssl = { version = ">= 0", features = [ "vendored" ] }
3737
async-trait = ">=0"

0 commit comments

Comments
 (0)