mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
Filter dependencies from SSE logging (#7819)
This commit is contained in:
@@ -650,13 +650,17 @@ fn run<E: EthSpec>(
|
||||
logging_layers.push(
|
||||
file_logging_layer
|
||||
.with_filter(logger_config.logfile_debug_level)
|
||||
.with_filter(workspace_filter)
|
||||
.with_filter(workspace_filter.clone())
|
||||
.boxed(),
|
||||
);
|
||||
}
|
||||
|
||||
if let Some(sse_logging_layer) = sse_logging_layer_opt {
|
||||
logging_layers.push(sse_logging_layer.boxed());
|
||||
logging_layers.push(
|
||||
sse_logging_layer
|
||||
.with_filter(workspace_filter.clone())
|
||||
.boxed(),
|
||||
);
|
||||
}
|
||||
|
||||
if let Some(libp2p_discv5_layer) = libp2p_discv5_layer {
|
||||
|
||||
Reference in New Issue
Block a user