From efe856c0feb43452f3c96cda3b4160d1505a4394 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sat, 5 Nov 2016 08:20:22 -0500 Subject: [PATCH] Clean up debug statements (logger already adds the level). --- daily_notifier.nim | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/daily_notifier.nim b/daily_notifier.nim index 0e64c4f..667b7df 100644 --- a/daily_notifier.nim +++ b/daily_notifier.nim @@ -24,7 +24,7 @@ randomize() proc parseDailyPlan(filename: string): seq[PlanItem] = - debug "debug - Parsing daily plan file: " & filename + debug "Parsing daily plan file: " & filename result = @[] @@ -49,16 +49,16 @@ proc parseDailyPlan(filename: string): seq[PlanItem] = of AfterPlans: break else: break - debug "debug - Found " & $result.len & " items." + debug "Found " & $result.len & " items." proc doAndLog(cmd: string): void = - debug "debug - Executing '" & cmd & "'" + debug "Executing '" & cmd & "'" discard execShellCmd(cmd) proc notifyDailyPlanItem(item: PlanItem): void = let desc = item.time.format(timeFmt) & " - " & item.note - debug "debug - Notifying: " & desc + debug "Notifying: " & desc let soundFile = soundFiles[random(soundFiles.len)] case hostOS @@ -84,7 +84,7 @@ proc loadConfig(s: cint): void {. exportc, noconv .} = var rcFilename: string = foldl(rcLocations, if len(a) > 0: a elif existsFile(b): b else: "") - debug "debug - Reloading config file from " & rcFilename + debug "Reloading config file from " & rcFilename var jsonCfg: JsonNode try: jsonCfg = parseFile(rcFilename) @@ -106,7 +106,7 @@ proc loadConfig(s: cint): void {. exportc, noconv .} = proc mainLoop(args: Table[string, Value]): void = - debug "debug - Started daemon main loop." + debug "Started daemon main loop." loadConfig(0) signal(SIGHUP, loadConfig) var curDay: TimeInfo = getLocalTime(fromSeconds(0))