Remove debug log

This commit is contained in:
Marko Korhonen 2023-11-22 21:33:48 +02:00
parent df334bc297
commit 28fe8772b1
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890

View file

@ -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;
}