From 4360f546ee699851f5de72b86702e4ad93ac90ef Mon Sep 17 00:00:00 2001 From: Bill Church Date: Tue, 16 Jul 2024 17:39:36 +0000 Subject: [PATCH] refactor: Remove console.log statement in config.js --- app/config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/config.js b/app/config.js index 8f7a3d7..e439e0c 100644 --- a/app/config.js +++ b/app/config.js @@ -253,7 +253,6 @@ function validateConfig(config) { if (!valid) { throw new Error('Config validation error: ' + ajv.errorsText(validate.errors)) } - console.log("config: ", JSON.stringify(config, null, 2)) return config }