mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
Add node name to the log lines (#7328)
* Initial commit Forked at:601e2fa139Parent branch: origin/master * WIP Forked at:601e2fa139Parent branch: origin/master * WIP Forked at:601e2fa139Parent branch: origin/master * WIP Forked at:601e2fa139Parent branch: origin/master * WIP Forked at:601e2fa139Parent branch: origin/master * WIP Forked at:601e2fa139Parent branch: origin/master * CLEANUP Forked at:601e2fa139Parent branch: origin/master * Add notes to original source code * CLEANUP Forked at:601e2fa139Parent branch: origin/master * CLEANUP Forked at:601e2fa139Parent branch: origin/master * WIP Forked at:601e2fa139Parent branch: origin/master * WIP Forked at:601e2fa139Parent branch: origin/master * WIP Forked at:601e2fa139Parent branch: origin/master * CLEANUP Forked at:601e2fa139Parent branch: origin/master * WIP Forked at:601e2fa139Parent branch: origin/master * Some doc * Test with trybuild * Revert "Test with trybuild" (issue with trybuild atm) This reverts commit 9055ec2206808ba3ddce6e3d87eb358907fa5e42. https://github.com/dtolnay/trybuild/issues/53 * Apply suggestions * Rename derive to proc-macro * Remove "prefix" feature from informant * Blocking task should use SpawnHandle::spawn_blocking * Improve doc as suggested * Fixes Forked at:601e2fa139Parent branch: origin/master * Apply suggestion * Update client/cli/proc-macro/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * More suggestions * CLEANUP Forked at:601e2fa139Parent branch: origin/master * Improve error message * CLEANUP Forked at:601e2fa139Parent branch: origin/master * Fix async issue * CLEANUP Forked at:601e2fa139Parent branch: origin/master * CLEANUP Forked at:601e2fa139Parent branch: origin/master * Add test * fix doc test * Update client/cli/src/logging.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/basic-authorship/src/basic_authorship.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/basic-authorship/src/basic_authorship.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Apply suggestions * Suggestions * Clarify doc * WIP Forked at:601e2fa139Parent branch: origin/master Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
@@ -25,6 +25,7 @@ pub mod arg_enums;
|
||||
mod commands;
|
||||
mod config;
|
||||
mod error;
|
||||
mod logging;
|
||||
mod params;
|
||||
mod runner;
|
||||
|
||||
@@ -34,8 +35,9 @@ pub use config::*;
|
||||
pub use error::*;
|
||||
pub use params::*;
|
||||
pub use runner::*;
|
||||
use sc_service::{Configuration, TaskExecutor};
|
||||
pub use sc_cli_proc_macro::*;
|
||||
pub use sc_service::{ChainSpec, Role};
|
||||
use sc_service::{Configuration, TaskExecutor};
|
||||
pub use sp_version::RuntimeVersion;
|
||||
use std::io::Write;
|
||||
pub use structopt;
|
||||
@@ -43,10 +45,14 @@ use structopt::{
|
||||
clap::{self, AppSettings},
|
||||
StructOpt,
|
||||
};
|
||||
#[doc(hidden)]
|
||||
pub use tracing;
|
||||
use tracing_subscriber::{
|
||||
filter::Directive, fmt::time::ChronoLocal, layer::SubscriberExt, FmtSubscriber, Layer,
|
||||
};
|
||||
|
||||
pub use logging::PREFIX_LOG_SPAN;
|
||||
|
||||
/// Substrate client CLI
|
||||
///
|
||||
/// This trait needs to be defined on the root structopt of the application. It will provide the
|
||||
@@ -310,13 +316,15 @@ pub fn init_logger(
|
||||
|
||||
let subscriber = FmtSubscriber::builder()
|
||||
.with_env_filter(env_filter)
|
||||
.with_ansi(enable_color)
|
||||
.with_target(!simple)
|
||||
.with_level(!simple)
|
||||
.with_thread_names(!simple)
|
||||
.with_timer(timer)
|
||||
.with_writer(std::io::stderr)
|
||||
.finish();
|
||||
.event_format(logging::EventFormat {
|
||||
timer,
|
||||
ansi: enable_color,
|
||||
display_target: !simple,
|
||||
display_level: !simple,
|
||||
display_thread_name: !simple,
|
||||
})
|
||||
.finish().with(logging::NodeNameLayer);
|
||||
|
||||
if let Some(profiling_targets) = profiling_targets {
|
||||
let profiling = sc_tracing::ProfilingLayer::new(tracing_receiver, &profiling_targets);
|
||||
@@ -339,8 +347,9 @@ pub fn init_logger(
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use crate as sc_cli;
|
||||
use std::{env, process::Command};
|
||||
use tracing::{metadata::Kind, subscriber::Interest, Callsite, Level, Metadata};
|
||||
use std::{process::Command, env};
|
||||
|
||||
#[test]
|
||||
fn test_logger_filters() {
|
||||
@@ -409,4 +418,36 @@ mod tests {
|
||||
log::info!(target: "test-target", "{}", EXPECTED_LOG_MESSAGE);
|
||||
}
|
||||
}
|
||||
|
||||
const EXPECTED_NODE_NAME: &'static str = "THE_NODE";
|
||||
|
||||
#[test]
|
||||
fn prefix_in_log_lines() {
|
||||
let executable = env::current_exe().unwrap();
|
||||
let output = Command::new(executable)
|
||||
.env("ENABLE_LOGGING", "1")
|
||||
.args(&["--nocapture", "prefix_in_log_lines_entrypoint"])
|
||||
.output()
|
||||
.unwrap();
|
||||
|
||||
let output = String::from_utf8(output.stderr).unwrap();
|
||||
assert!(output.contains(&format!(" [{}] ", EXPECTED_NODE_NAME)));
|
||||
}
|
||||
|
||||
/// This is no actual test, it will be used by the `prefix_in_log_lines` test.
|
||||
/// The given test will call the test executable to only execute this test that
|
||||
/// will only print a log line prefixed by the node name `EXPECTED_NODE_NAME`.
|
||||
#[test]
|
||||
fn prefix_in_log_lines_entrypoint() {
|
||||
if env::var("ENABLE_LOGGING").is_ok() {
|
||||
let test_pattern = "test-target=info";
|
||||
init_logger(&test_pattern, Default::default(), Default::default()).unwrap();
|
||||
prefix_in_log_lines_process();
|
||||
}
|
||||
}
|
||||
|
||||
#[crate::prefix_logs_with(EXPECTED_NODE_NAME)]
|
||||
fn prefix_in_log_lines_process() {
|
||||
log::info!("Hello World!");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,337 @@
|
||||
// This file is part of Substrate.
|
||||
|
||||
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use ansi_term::{Colour, Style};
|
||||
use std::{fmt::{self, Write as _}, iter};
|
||||
use tracing::{
|
||||
span::{self, Attributes},
|
||||
Event, Id, Level, Subscriber,
|
||||
};
|
||||
use tracing_log::NormalizeEvent;
|
||||
use tracing_subscriber::{
|
||||
fmt::{
|
||||
time::{FormatTime, SystemTime},
|
||||
FmtContext, FormatEvent, FormatFields,
|
||||
},
|
||||
layer::Context,
|
||||
registry::LookupSpan,
|
||||
Layer,
|
||||
};
|
||||
|
||||
/// Span name used for the logging prefix. See macro `sc_cli::prefix_logs_with!`
|
||||
pub const PREFIX_LOG_SPAN: &str = "substrate-log-prefix";
|
||||
|
||||
pub(crate) struct EventFormat<T = SystemTime> {
|
||||
pub(crate) timer: T,
|
||||
pub(crate) ansi: bool,
|
||||
pub(crate) display_target: bool,
|
||||
pub(crate) display_level: bool,
|
||||
pub(crate) display_thread_name: bool,
|
||||
}
|
||||
|
||||
// NOTE: the following code took inspiration from tracing-subscriber
|
||||
//
|
||||
// https://github.com/tokio-rs/tracing/blob/2f59b32/tracing-subscriber/src/fmt/format/mod.rs#L449
|
||||
impl<S, N, T> FormatEvent<S, N> for EventFormat<T>
|
||||
where
|
||||
S: Subscriber + for<'a> LookupSpan<'a>,
|
||||
N: for<'a> FormatFields<'a> + 'static,
|
||||
T: FormatTime,
|
||||
{
|
||||
fn format_event(
|
||||
&self,
|
||||
ctx: &FmtContext<S, N>,
|
||||
writer: &mut dyn fmt::Write,
|
||||
event: &Event,
|
||||
) -> fmt::Result {
|
||||
let normalized_meta = event.normalized_metadata();
|
||||
let meta = normalized_meta.as_ref().unwrap_or_else(|| event.metadata());
|
||||
time::write(&self.timer, writer, self.ansi)?;
|
||||
|
||||
if self.display_level {
|
||||
let fmt_level = { FmtLevel::new(meta.level(), self.ansi) };
|
||||
write!(writer, "{} ", fmt_level)?;
|
||||
}
|
||||
|
||||
if self.display_thread_name {
|
||||
let current_thread = std::thread::current();
|
||||
match current_thread.name() {
|
||||
Some(name) => {
|
||||
write!(writer, "{} ", FmtThreadName::new(name))?;
|
||||
}
|
||||
// fall-back to thread id when name is absent and ids are not enabled
|
||||
None => {
|
||||
write!(writer, "{:0>2?} ", current_thread.id())?;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Custom code to display node name
|
||||
if let Some(span) = ctx.lookup_current() {
|
||||
let parents = span.parents();
|
||||
for span in std::iter::once(span).chain(parents) {
|
||||
let exts = span.extensions();
|
||||
if let Some(node_name) = exts.get::<NodeName>() {
|
||||
write!(writer, "{}", node_name.as_str())?;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let fmt_ctx = { FmtCtx::new(&ctx, event.parent(), self.ansi) };
|
||||
write!(writer, "{}", fmt_ctx)?;
|
||||
if self.display_target {
|
||||
write!(writer, "{}:", meta.target())?;
|
||||
}
|
||||
ctx.format_fields(writer, event)?;
|
||||
writeln!(writer)
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) struct NodeNameLayer;
|
||||
|
||||
impl<S> Layer<S> for NodeNameLayer
|
||||
where
|
||||
S: Subscriber + for<'a> LookupSpan<'a>,
|
||||
{
|
||||
fn new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>) {
|
||||
let span = ctx
|
||||
.span(id)
|
||||
.expect("new_span has been called for this span; qed");
|
||||
|
||||
if span.name() != PREFIX_LOG_SPAN {
|
||||
return;
|
||||
}
|
||||
|
||||
let mut extensions = span.extensions_mut();
|
||||
|
||||
if extensions.get_mut::<NodeName>().is_none() {
|
||||
let mut s = String::new();
|
||||
let mut v = NodeNameVisitor(&mut s);
|
||||
attrs.record(&mut v);
|
||||
|
||||
if !s.is_empty() {
|
||||
let fmt_fields = NodeName(s);
|
||||
extensions.insert(fmt_fields);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct NodeNameVisitor<'a, W: std::fmt::Write>(&'a mut W);
|
||||
|
||||
macro_rules! write_node_name {
|
||||
($method:ident, $type:ty, $format:expr) => {
|
||||
fn $method(&mut self, field: &tracing::field::Field, value: $type) {
|
||||
if field.name() == "name" {
|
||||
write!(self.0, $format, value).expect("no way to return the err; qed");
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
impl<'a, W: std::fmt::Write> tracing::field::Visit for NodeNameVisitor<'a, W> {
|
||||
write_node_name!(record_debug, &dyn std::fmt::Debug, "[{:?}] ");
|
||||
write_node_name!(record_str, &str, "[{}] ");
|
||||
write_node_name!(record_i64, i64, "[{}] ");
|
||||
write_node_name!(record_u64, u64, "[{}] ");
|
||||
write_node_name!(record_bool, bool, "[{}] ");
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
struct NodeName(String);
|
||||
|
||||
impl NodeName {
|
||||
fn as_str(&self) -> &str {
|
||||
self.0.as_str()
|
||||
}
|
||||
}
|
||||
|
||||
struct FmtLevel<'a> {
|
||||
level: &'a Level,
|
||||
ansi: bool,
|
||||
}
|
||||
|
||||
impl<'a> FmtLevel<'a> {
|
||||
pub(crate) fn new(level: &'a Level, ansi: bool) -> Self {
|
||||
Self { level, ansi }
|
||||
}
|
||||
}
|
||||
|
||||
const TRACE_STR: &str = "TRACE";
|
||||
const DEBUG_STR: &str = "DEBUG";
|
||||
const INFO_STR: &str = " INFO";
|
||||
const WARN_STR: &str = " WARN";
|
||||
const ERROR_STR: &str = "ERROR";
|
||||
|
||||
impl<'a> fmt::Display for FmtLevel<'a> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
if self.ansi {
|
||||
match *self.level {
|
||||
Level::TRACE => write!(f, "{}", Colour::Purple.paint(TRACE_STR)),
|
||||
Level::DEBUG => write!(f, "{}", Colour::Blue.paint(DEBUG_STR)),
|
||||
Level::INFO => write!(f, "{}", Colour::Green.paint(INFO_STR)),
|
||||
Level::WARN => write!(f, "{}", Colour::Yellow.paint(WARN_STR)),
|
||||
Level::ERROR => write!(f, "{}", Colour::Red.paint(ERROR_STR)),
|
||||
}
|
||||
} else {
|
||||
match *self.level {
|
||||
Level::TRACE => f.pad(TRACE_STR),
|
||||
Level::DEBUG => f.pad(DEBUG_STR),
|
||||
Level::INFO => f.pad(INFO_STR),
|
||||
Level::WARN => f.pad(WARN_STR),
|
||||
Level::ERROR => f.pad(ERROR_STR),
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct FmtThreadName<'a> {
|
||||
name: &'a str,
|
||||
}
|
||||
|
||||
impl<'a> FmtThreadName<'a> {
|
||||
pub(crate) fn new(name: &'a str) -> Self {
|
||||
Self { name }
|
||||
}
|
||||
}
|
||||
|
||||
// NOTE: the following code has been duplicated from tracing-subscriber
|
||||
//
|
||||
// https://github.com/tokio-rs/tracing/blob/2f59b32/tracing-subscriber/src/fmt/format/mod.rs#L845
|
||||
impl<'a> fmt::Display for FmtThreadName<'a> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
use std::sync::atomic::{
|
||||
AtomicUsize,
|
||||
Ordering::{AcqRel, Acquire, Relaxed},
|
||||
};
|
||||
|
||||
// Track the longest thread name length we've seen so far in an atomic,
|
||||
// so that it can be updated by any thread.
|
||||
static MAX_LEN: AtomicUsize = AtomicUsize::new(0);
|
||||
let len = self.name.len();
|
||||
// Snapshot the current max thread name length.
|
||||
let mut max_len = MAX_LEN.load(Relaxed);
|
||||
|
||||
while len > max_len {
|
||||
// Try to set a new max length, if it is still the value we took a
|
||||
// snapshot of.
|
||||
match MAX_LEN.compare_exchange(max_len, len, AcqRel, Acquire) {
|
||||
// We successfully set the new max value
|
||||
Ok(_) => break,
|
||||
// Another thread set a new max value since we last observed
|
||||
// it! It's possible that the new length is actually longer than
|
||||
// ours, so we'll loop again and check whether our length is
|
||||
// still the longest. If not, we'll just use the newer value.
|
||||
Err(actual) => max_len = actual,
|
||||
}
|
||||
}
|
||||
|
||||
// pad thread name using `max_len`
|
||||
write!(f, "{:>width$}", self.name, width = max_len)
|
||||
}
|
||||
}
|
||||
|
||||
struct FmtCtx<'a, S, N> {
|
||||
ctx: &'a FmtContext<'a, S, N>,
|
||||
span: Option<&'a span::Id>,
|
||||
ansi: bool,
|
||||
}
|
||||
|
||||
impl<'a, S, N: 'a> FmtCtx<'a, S, N>
|
||||
where
|
||||
S: Subscriber + for<'lookup> LookupSpan<'lookup>,
|
||||
N: for<'writer> FormatFields<'writer> + 'static,
|
||||
{
|
||||
pub(crate) fn new(
|
||||
ctx: &'a FmtContext<'_, S, N>,
|
||||
span: Option<&'a span::Id>,
|
||||
ansi: bool,
|
||||
) -> Self {
|
||||
Self { ctx, ansi, span }
|
||||
}
|
||||
|
||||
fn bold(&self) -> Style {
|
||||
if self.ansi {
|
||||
return Style::new().bold();
|
||||
}
|
||||
|
||||
Style::new()
|
||||
}
|
||||
}
|
||||
|
||||
// NOTE: the following code took inspiration from tracing-subscriber
|
||||
//
|
||||
// https://github.com/tokio-rs/tracing/blob/2f59b32/tracing-subscriber/src/fmt/format/mod.rs#L711
|
||||
impl<'a, S, N: 'a> fmt::Display for FmtCtx<'a, S, N>
|
||||
where
|
||||
S: Subscriber + for<'lookup> LookupSpan<'lookup>,
|
||||
N: for<'writer> FormatFields<'writer> + 'static,
|
||||
{
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
let bold = self.bold();
|
||||
let mut seen = false;
|
||||
|
||||
let span = self
|
||||
.span
|
||||
.and_then(|id| self.ctx.span(&id))
|
||||
.or_else(|| self.ctx.lookup_current());
|
||||
|
||||
let scope = span
|
||||
.into_iter()
|
||||
.flat_map(|span| span.from_root().chain(iter::once(span)));
|
||||
|
||||
for name in scope
|
||||
.map(|span| span.metadata().name())
|
||||
.filter(|&x| x != "substrate-node")
|
||||
{
|
||||
seen = true;
|
||||
write!(f, "{}:", bold.paint(name))?;
|
||||
}
|
||||
|
||||
if seen {
|
||||
f.write_char(' ')?;
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
// NOTE: the following code has been duplicated from tracing-subscriber
|
||||
//
|
||||
// https://github.com/tokio-rs/tracing/blob/2f59b32/tracing-subscriber/src/fmt/time/mod.rs#L252
|
||||
mod time {
|
||||
use ansi_term::Style;
|
||||
use std::fmt;
|
||||
use tracing_subscriber::fmt::time::FormatTime;
|
||||
|
||||
pub(crate) fn write<T>(timer: T, writer: &mut dyn fmt::Write, with_ansi: bool) -> fmt::Result
|
||||
where
|
||||
T: FormatTime,
|
||||
{
|
||||
if with_ansi {
|
||||
let style = Style::new().dimmed();
|
||||
write!(writer, "{}", style.prefix())?;
|
||||
timer.format_time(writer)?;
|
||||
write!(writer, "{}", style.suffix())?;
|
||||
} else {
|
||||
timer.format_time(writer)?;
|
||||
}
|
||||
writer.write_char(' ')?;
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user