From e3df31ce676121e70ae4daa3e40f5204155b5d03 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge Date: Wed, 1 Feb 2023 00:14:38 +0800 Subject: [PATCH] workbench: restore the default trace config --- nix/workbench/profiles/tracing.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/nix/workbench/profiles/tracing.nix b/nix/workbench/profiles/tracing.nix index f604a2506ac..730810ca9c9 100644 --- a/nix/workbench/profiles/tracing.nix +++ b/nix/workbench/profiles/tracing.nix @@ -10,7 +10,7 @@ ## TraceOptions = { "" = - { severity = "Silence"; + { severity = "Notice"; backends = [ "Stdout MachineFormat" "EKGBackend" @@ -19,5 +19,16 @@ "Forwarder" ]); }; + + ## These are benchmarking-specific config deviations from the default. + ## + "BlockFetch".severity = "Info"; + "BlockFetch.Client.CompletedBlockFetch".maxFrequency = 0; + "ChainSync".severity = "Info"; + "ChainSync.Client.DownloadedHeader".maxFrequency = 0; + "Forge.Loop.BlockContext".severity = "Info"; + "Forge.Loop.LedgerState".severity = "Info"; + "Forge.Loop.LedgerView".severity = "Info"; + "Startup".severity = "Info"; }; }