From 2c47d839dbc14a9095f5f4975b5fc204cd767fa8 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 22 Feb 2025 21:26:10 +1100 Subject: config: forgot to remove print --- config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/config.ts b/config.ts index a06297d..be49547 100644 --- a/config.ts +++ b/config.ts @@ -28,7 +28,6 @@ const convertSettings = (obj: T): Settings => const updateSection = (from: { [k: string]: any }, to: { [k: string]: any }, path = "") => { for (const [k, v] of Object.entries(from)) { - print(`${path}${k}:`, to.hasOwnProperty(k)); if (to.hasOwnProperty(k)) { if (isObject(v)) updateSection(v, to[k], `${path}${k}.`); else to[k].set(v); -- cgit v1.2.3-freya