Skip to content

Commit da4de41

Browse files
committed
fixes tracing import path issue
- Creates ENG-1123
1 parent d0751b4 commit da4de41

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ integration = []
2727
[dependencies]
2828
init4-bin-base = { version = "0.4.2", features = ["perms"] }
2929

30-
signet-constants = { git = "https://github.com/init4tech/signet-sdk" }
31-
signet-sim = { git = "https://github.com/init4tech/signet-sdk" }
32-
signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk" }
33-
signet-types = { git = "https://github.com/init4tech/signet-sdk" }
34-
signet-zenith = { git = "https://github.com/init4tech/signet-sdk" }
30+
signet-constants = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" }
31+
signet-sim = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" }
32+
signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" }
33+
signet-types = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" }
34+
signet-zenith = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" }
3535

3636
trevm = { version = "0.23.4", features = ["concurrent-db", "test-utils"] }
3737

@@ -58,3 +58,4 @@ tokio = { version = "1.36.0", features = ["full", "macros", "rt-multi-thread"] }
5858
oauth2 = "5"
5959
tokio-stream = "0.1.17"
6060
url = "2.5.4"
61+
tracing = "0.1.41"

src/quincey.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use alloy::signers::Signer;
22
use eyre::bail;
33
use init4_bin_base::{
4-
deps::tracing::{self, debug, info, instrument, trace},
4+
deps::tracing::{debug, info, instrument, trace},
55
perms::SharedToken,
66
utils::signer::LocalOrAws,
77
};

src/tasks/submit.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use alloy::{
1616
use eyre::bail;
1717
use init4_bin_base::deps::{
1818
metrics::{counter, histogram},
19-
tracing::{self, Instrument, debug, debug_span, error, info, instrument, warn},
19+
tracing::{Instrument, debug, debug_span, error, info, instrument, warn},
2020
};
2121
use signet_sim::BuiltBlock;
2222
use signet_types::{SignRequest, SignResponse};
@@ -221,7 +221,7 @@ impl SubmitTask {
221221

222222
// Extract fills from the built block
223223
let fills = self.extract_fills(block);
224-
debug!(?fills, "extracted fills");
224+
debug!(fill_count = fills.len(), "extracted fills");
225225

226226
// Create a blob transaction with the blob header and signature values and return it
227227
let tx = self

0 commit comments

Comments
 (0)