re-disable INFO flag

This commit is contained in:
Jeff Carr 2025-02-21 18:31:42 -06:00
parent 5b9eca7ac0
commit 3184badaec
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ func init() {
short := "andlabs"
NOW = log.NewFlag("NOW", true, full, short, "temp debugging stuff")
INFO = log.NewFlag("INFO", true, full, short, "normal debugging stuff")
INFO = log.NewFlag("INFO", false, full, short, "normal debugging stuff")
WARN = log.NewFlag("WARN", true, full, short, "bad things")

View File

@ -40,7 +40,7 @@ import (
// -----------------------------
func place(p *tree.Node, n *tree.Node) bool {
// log.Log(INFO, "place() 1 START", n.WidgetType, n.GetProgName(), n.GetLabel())
log.Log(INFO, "place() 1 START", n.WidgetType, n.GetProgName(), n.GetLabel())
if p == nil {
log.Log(WARN, "place() parent == nil")
os.Exit(-1)