diff options
| author | Jeff Carr <[email protected]> | 2025-02-21 18:31:42 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-21 18:31:42 -0600 |
| commit | 3184badaecee29be7d66b9fa786fcc18fb0f2cc0 (patch) | |
| tree | 12561ec17ff75896409723d8c56238bac077b2d4 | |
| parent | 5b9eca7ac0ea8e242a92b1d87c7a4474543e382b (diff) | |
re-disable INFO flagv0.22.21
| -rw-r--r-- | flags.go | 2 | ||||
| -rw-r--r-- | place.go | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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") @@ -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) |
