Skip to content
Snippets Groups Projects
Unverified Commit cccf3417 authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

Forward logging directives to Polkadot workers (#6534)


This pull request forward all the logging directives given to the node
via `RUST_LOG` or `-l` to the workers, instead of only forwarding
`RUST_LOG`.

---------

Co-authored-by: default avatarGitHub Action <action@github.com>
parent 09757a41
Branches
No related merge requests found
Pipeline #506276 waiting for manual action with stages
in 1 hour, 25 minutes, and 49 seconds
......@@ -17553,6 +17553,7 @@ dependencies = [
"rococo-runtime",
"rusty-fork",
"sc-sysinfo",
"sc-tracing",
"slotmap",
"sp-core 28.0.0",
"sp-maybe-compressed-blob 11.0.0",
......
......@@ -38,6 +38,7 @@ polkadot-node-primitives = { workspace = true, default-features = true }
polkadot-node-subsystem = { workspace = true, default-features = true }
polkadot-primitives = { workspace = true, default-features = true }
sc-tracing = { workspace = true }
sp-core = { workspace = true, default-features = true }
sp-maybe-compressed-blob = { optional = true, workspace = true, default-features = true }
polkadot-node-core-pvf-prepare-worker = { optional = true, workspace = true, default-features = true }
......
......@@ -237,10 +237,8 @@ impl WorkerHandle {
// Clear all env vars from the spawned process.
let mut command = process::Command::new(program.as_ref());
command.env_clear();
// Add back any env vars we want to keep.
if let Ok(value) = std::env::var("RUST_LOG") {
command.env("RUST_LOG", value);
}
command.env("RUST_LOG", sc_tracing::logging::get_directives().join(","));
let mut child = command
.args(extra_args)
......
title: Forward logging directives to Polkadot workers
doc:
- audience: Node Dev
description: |-
This pull request forward all the logging directives given to the node via `RUST_LOG` or `-l` to the workers, instead of only forwarding `RUST_LOG`.
crates:
- name: polkadot-node-core-pvf
bump: patch
- name: sc-tracing
bump: patch
......@@ -40,7 +40,7 @@ pub(crate) fn add_default_directives(directives: &str) {
add_directives(directives);
}
/// Add directives to current directives
/// Add directives to current directives.
pub fn add_directives(directives: &str) {
CURRENT_DIRECTIVES
.get_or_init(|| Mutex::new(Vec::new()))
......@@ -48,6 +48,11 @@ pub fn add_directives(directives: &str) {
.push(directives.to_owned());
}
/// Returns the current directives.
pub fn get_directives() -> Vec<String> {
CURRENT_DIRECTIVES.get_or_init(|| Mutex::new(Vec::new())).lock().clone()
}
/// Parse `Directive` and add to default directives if successful.
///
/// Ensures the supplied directive will be restored when resetting the log filter.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment