Skip to content

Commit

Permalink
fix: in proposer duties table primary key should not be the public key
Browse files Browse the repository at this point in the history
  • Loading branch information
Akagi201 committed Oct 15, 2024
1 parent e2e299c commit fcc1e49
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/cmd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ helix-common.workspace = true

tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter"] }
tracing-appender.workspace = true

num_cpus.workspace = true
3 changes: 2 additions & 1 deletion crates/cmd/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ async fn run() {

match &config.logging {
LoggingConfig::Console => {
tracing_subscriber::fmt().init();
let filter_layer = tracing_subscriber::EnvFilter::from_default_env();
tracing_subscriber::fmt().with_env_filter(filter_layer).init();
}
LoggingConfig::File { dir_path, file_name } => {
let file_appender = tracing_appender::rolling::daily(dir_path, file_name);
Expand Down

0 comments on commit fcc1e49

Please sign in to comment.