From 28fe8772b19bdabfddd82b72db368ecb6a8115a1 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Wed, 22 Nov 2023 21:33:48 +0200 Subject: [PATCH] Remove debug log --- src/config.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/config.ts b/src/config.ts index 224dad6..d7192a3 100644 --- a/src/config.ts +++ b/src/config.ts @@ -6,8 +6,6 @@ import { Dayjs } from 'dayjs'; import { Duration } from 'dayjs/plugin/duration.js'; import { parseDuration, parseTimestamp } from './parse.js'; -const { debug } = console; - interface Config { defaults: { workDayDuration: Duration; @@ -57,7 +55,6 @@ const getConfig = (): Config => { if (fs.existsSync(configFilePath)) { configData = toml.parse(fs.readFileSync(configFilePath, 'utf8')) as unknown as RawConfig; } else { - debug('Configuration file does not exist, loading defaults'); configData = defaultConfig; }