From c87715046ecd879775ead787101e3a3267df2023 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Fri, 29 Sep 2023 14:31:00 +1000 Subject: [PATCH] Log the entire config and fix build error --- codex/codex.nim | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/codex/codex.nim b/codex/codex.nim index 29c1aefc..ac76e174 100644 --- a/codex/codex.nim +++ b/codex/codex.nim @@ -129,13 +129,7 @@ proc bootstrapInteractions( return (client, host, validator) proc start*(s: CodexServer) {.async.} = - notice "Starting codex node", - persistence = s.config.persistence, - validator = s.config.validator, - ethAccount = s.config.ethAccount, - simProofFailures = s.config.simulateProofFailures, - dataDir = s.config.dataDir, - logFile = s.config.logFile + notice "Starting codex node", config = $s.config await s.repoStore.start() s.maintenance.start()