diff options
| author | Jeff Carr <[email protected]> | 2024-01-21 11:37:00 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-21 11:37:00 -0600 |
| commit | ba70be3064c1d082eb0e9146562b7f07dd894fb0 (patch) | |
| tree | f8fc37331297233379614238bc382bf0a4235313 /debug.go | |
| parent | dfb7a47e8cccd82080de3d6ba97855eeb2be6593 (diff) | |
cleaner logging outputv0.12.20
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debug.go')
| -rw-r--r-- | debug.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -99,9 +99,9 @@ func (n *Node) ListChildren(dump bool) { if listChildrenParent != nil { log.Log(NODE, "\t\t\tlistChildrenParent =", listChildrenParent.id) if listChildrenParent.id != n.parent.id { - log.Log(NOW, "parent =", n.parent.id, n.parent.progname) - log.Log(NOW, "listChildrenParent =", listChildrenParent.id, listChildrenParent.progname) - log.Log(NOW, listChildrenParent.id, "!=", n.parent.id) + log.Log(INFO, "parent =", n.parent.id, n.parent.progname) + log.Log(INFO, "listChildrenParent =", listChildrenParent.id, listChildrenParent.progname) + log.Log(INFO, listChildrenParent.id, "!=", n.parent.id) log.Exit("parent.child does not match child.parent") } } |
