diff options
| -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) |
