diff options
| author | Jeff Carr <[email protected]> | 2024-01-21 10:25:41 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-21 10:25:41 -0600 |
| commit | b19c1e237db79b615a037b6034d45ac54c7ff233 (patch) | |
| tree | 854f060af47c2038b05cac8c3a1cb7b8b842cdad /flags.go | |
| parent | 8a07a26f2a1fbdd2d0025679163560634b73bbdd (diff) | |
quiet loggingv0.0.7
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'flags.go')
| -rw-r--r-- | flags.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/flags.go b/flags.go new file mode 100644 index 0000000..4e6fda4 --- /dev/null +++ b/flags.go @@ -0,0 +1,13 @@ +package tree + +import ( + "go.wit.com/log" +) + +var TREE *log.LogFlag + +func init() { + full := "go.wit.com/gui" + short := "tree" + TREE = log.NewFlag("TREE", false, full, short, "treeRoot info") +} |
