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] =
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))