Skip to content

Commit 5b4a917

Browse files
authored
feat: Add env_logger logging implementation (#18)
1 parent fb17048 commit 5b4a917

File tree

3 files changed

+133
-0
lines changed

3 files changed

+133
-0
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition = "2024"
66
[dependencies]
77
alloy-signer = "0.15.9"
88
alloy-signer-local = "0.15.9"
9+
env_logger = "0.11.8"
910
log = "0.4.27"
1011
reqwest = { version = "0.12.15", features = ["blocking", "json"] }
1112
serde = "1.0.219"

src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ mod api;
44
mod compute;
55

66
fn main() {
7+
env_logger::init();
78
process::exit(compute::app_runner::start());
89
}

0 commit comments

Comments
 (0)