Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,7 @@ where
let kind = Self::node_kind();
self.node_config().map(|_| {
let config_path = dir.join(format!("{kind}_config.toml"));
let node_kind_str = match &kind {
NodeKind::BatchProver | NodeKind::LightClientProver => "prover".to_string(),
kind => kind.to_string(),
};
let node_kind_str = kind.to_string();
vec![
format!("--{node_kind_str}"),
config_path.display().to_string(),
Expand Down
2 changes: 1 addition & 1 deletion src/framework.rs
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ static INIT: Once = Once::new();
fn setup_logging() {
INIT.call_once(|| {
let env_filter = EnvFilter::try_from_default_env()
.or_else(|_| EnvFilter::try_new("citrea_e2e=info"))
.or_else(|_| EnvFilter::try_new("info"))
.unwrap();

if std::env::var("JSON_LOGS").is_ok() {
Expand Down
Loading