Clean up debug statements (logger already adds the level).

This commit is contained in:
Jonathan Bernard 2016-11-05 08:20:22 -05:00
parent 3e430f8ff2
commit efe856c0fe

View File

@ -24,7 +24,7 @@ randomize()
proc parseDailyPlan(filename: string): seq[PlanItem] = proc parseDailyPlan(filename: string): seq[PlanItem] =
debug "debug - Parsing daily plan file: " & filename debug "Parsing daily plan file: " & filename
result = @[] result = @[]
@ -49,16 +49,16 @@ proc parseDailyPlan(filename: string): seq[PlanItem] =
of AfterPlans: break of AfterPlans: break
else: break else: break
debug "debug - Found " & $result.len & " items." debug "Found " & $result.len & " items."
proc doAndLog(cmd: string): void = proc doAndLog(cmd: string): void =
debug "debug - Executing '" & cmd & "'" debug "Executing '" & cmd & "'"
discard execShellCmd(cmd) discard execShellCmd(cmd)
proc notifyDailyPlanItem(item: PlanItem): void = proc notifyDailyPlanItem(item: PlanItem): void =
let desc = item.time.format(timeFmt) & " - " & item.note let desc = item.time.format(timeFmt) & " - " & item.note
debug "debug - Notifying: " & desc debug "Notifying: " & desc
let soundFile = soundFiles[random(soundFiles.len)] let soundFile = soundFiles[random(soundFiles.len)]
case hostOS case hostOS
@ -84,7 +84,7 @@ proc loadConfig(s: cint): void {. exportc, noconv .} =
var rcFilename: string = var rcFilename: string =
foldl(rcLocations, if len(a) > 0: a elif existsFile(b): b else: "") 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 var jsonCfg: JsonNode
try: jsonCfg = parseFile(rcFilename) try: jsonCfg = parseFile(rcFilename)
@ -106,7 +106,7 @@ proc loadConfig(s: cint): void {. exportc, noconv .} =
proc mainLoop(args: Table[string, Value]): void = proc mainLoop(args: Table[string, Value]): void =
debug "debug - Started daemon main loop." debug "Started daemon main loop."
loadConfig(0) loadConfig(0)
signal(SIGHUP, loadConfig) signal(SIGHUP, loadConfig)
var curDay: TimeInfo = getLocalTime(fromSeconds(0)) var curDay: TimeInfo = getLocalTime(fromSeconds(0))