From aeeacf535d3557279202618b0b8d4a09c84000e7 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 22 Apr 2023 13:53:07 -0500 Subject: [PATCH] disable watchdog debugging Signed-off-by: Jeff Carr --- Makefile | 2 ++ watchdog.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8a59dc6..7af2b6f 100644 --- a/Makefile +++ b/Makefile @@ -54,6 +54,8 @@ cmds-helloconsole: # git remote add github2 git@github.com:wit-go/gui.git github: git push origin master + git push origin devel + git push origin --tags git push github master git push github devel git push github --tags diff --git a/watchdog.go b/watchdog.go index 5d18dcb..d992bd4 100644 --- a/watchdog.go +++ b/watchdog.go @@ -15,7 +15,7 @@ var watchtime time.Duration = 100 // in tenths of seconds func Watchdog() { var i = 1 for { - log(logNow, "watchdog timer is alive. give me something to do.", i) + log(logInfo, "watchdog timer is alive. give me something to do.", i) if (Config.rootNode == nil) { log(logInfo, "Config.rootNode == nil", i) } else {