disable watchdog debugging
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
37dee72c32
commit
aeeacf535d
2
Makefile
2
Makefile
|
@ -54,6 +54,8 @@ cmds-helloconsole:
|
||||||
# git remote add github2 git@github.com:wit-go/gui.git
|
# git remote add github2 git@github.com:wit-go/gui.git
|
||||||
github:
|
github:
|
||||||
git push origin master
|
git push origin master
|
||||||
|
git push origin devel
|
||||||
|
git push origin --tags
|
||||||
git push github master
|
git push github master
|
||||||
git push github devel
|
git push github devel
|
||||||
git push github --tags
|
git push github --tags
|
||||||
|
|
|
@ -15,7 +15,7 @@ var watchtime time.Duration = 100 // in tenths of seconds
|
||||||
func Watchdog() {
|
func Watchdog() {
|
||||||
var i = 1
|
var i = 1
|
||||||
for {
|
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) {
|
if (Config.rootNode == nil) {
|
||||||
log(logInfo, "Config.rootNode == nil", i)
|
log(logInfo, "Config.rootNode == nil", i)
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue