We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57e39d7 commit 86c708dCopy full SHA for 86c708d
cardano-submit-api/src/Cardano/TxSubmit.hs
@@ -43,6 +43,9 @@ defaultTraceConfig =
43
44
runTxSubmitWebapi :: TxSubmitNodeParams -> IO ()
45
runTxSubmitWebapi tsnp = do
46
+ putStrLn $ "Path to config:\n" <> unConfigFile tspConfigFile
47
+ jsonFile <- readFile (unConfigFile tspConfigFile)
48
+ putStrLn $ "The json file contents:\n" <> jsonFile
49
tracingConfig <- readConfigurationWithDefault (unConfigFile tspConfigFile) defaultTraceConfig
50
(trce, registrySample) <- mkTraceDispatcher tracingConfig
51
Async.withAsync
0 commit comments