Skip to content

Commit

Permalink
fix: enable debug logs in release mode (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaiahReid committed Mar 27, 2024
1 parent e6f7ea6 commit 2307815
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 79 deletions.
144 changes: 70 additions & 74 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions components/chainhook-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rand = "0.8.5"
chainhook-sdk = { version = "0.12.1", default-features = false, features = [
"zeromq",
], path = "../chainhook-sdk" }
hiro-system-kit = "0.3.1"
hiro-system-kit = "0.3.2"
# clarinet-files = { path = "../../../clarinet/components/clarinet-files" }
# hiro-system-kit = { path = "../../../clarinet/components/hiro-system-kit" }
clap = { version = "3.2.23", features = ["derive"], optional = true }
Expand All @@ -31,7 +31,7 @@ reqwest = { version = "0.11", default-features = false, features = [
"json",
"rustls-tls",
] }
tokio = { version = "=1.24", features = ["full"] }
tokio = { version = "1.35.1", features = ["full"] }
futures-util = "0.3.24"
flate2 = "1.0.24"
tar = "0.4.38"
Expand Down
6 changes: 3 additions & 3 deletions components/chainhook-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ serde_json = { version = "1", features = ["arbitrary_precision"] }
serde-hex = "0.1.0"
serde_derive = "1"
stacks-rpc-client = "2"
hiro-system-kit = { version = "0.3.1", optional = true }
hiro-system-kit = { version = "0.3.2", optional = true }
# stacks-rpc-client = { version = "1", path = "../../../clarinet/components/stacks-rpc-client" }
# hiro-system-kit = { version = "0.1.0", path = "../../../clarinet/components/hiro-system-kit" }
chainhook-types = { version = "1.3.3", path = "../chainhook-types-rs" }
Expand All @@ -26,7 +26,7 @@ reqwest = { version = "0.11", default-features = false, features = [
"json",
"rustls-tls",
] }
tokio = { version = "1.24", features = ["full"] }
tokio = { version = "1.35.1", features = ["full"] }
base58 = "0.2.0"
schemars = { version = "0.8.10", git = "https://github.com/hirosystems/schemars.git", branch = "feat-chainhook-fixes" }
crossbeam-channel = "0.5.6"
Expand All @@ -50,4 +50,4 @@ test-case = "3.1.0"
default = ["hiro-system-kit/log"]
zeromq = ["zmq"]
debug = ["hiro-system-kit/debug"]
release = ["hiro-system-kit/debug"]
release = ["hiro-system-kit/release_debug", "hiro-system-kit/full_log_level_prefix"]

0 comments on commit 2307815

Please sign in to comment.