diff --git a/cardano-lib/default.nix b/cardano-lib/default.nix index fdf49477..163b2364 100644 --- a/cardano-lib/default.nix +++ b/cardano-lib/default.nix @@ -114,6 +114,18 @@ let mkSubmitApiConfig = name: nodeConfig: (filterAttrs (k: v: v != null) { GenesisHash = nodeConfig.ByronGenesisHash; inherit (nodeConfig) RequiresNetworkMagic; + TraceOptions = builtins.listToAttrs [ + { name = ""; + value = { + backends = [ + "EKGBackend" + "Stdout HumanFormatColoured" + ]; + detail = "DNormal"; + severity = "Info"; + }; + } + ]; }) // defaultExplorerLogConfig;