chore(log): simplify default profiler tracing filter (#22050)

Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
Georgios Konstantopoulos
2026-02-10 23:33:20 -05:00
committed by GitHub
parent 1406a984a7
commit 69e4c06ae7

View File

@@ -12,20 +12,7 @@ use tracing::{level_filters::LevelFilter, Level};
/// Constant to convert megabytes to bytes
const MB_TO_BYTES: u64 = 1024 * 1024;
const PROFILER_TRACING_FILTER: &str = concat!(
"info",
",engine=debug",
",trie=debug",
",providers=debug",
",rpc=debug",
",sync=debug",
",pruner=debug",
",libmdbx=debug",
",jsonrpsee-server=debug",
",jsonrpsee-core=debug",
",jsonrpsee-http=debug",
",jsonrpsee=debug",
);
const PROFILER_TRACING_FILTER: &str = "debug";
/// The log configuration.
#[derive(Debug, Args)]