diff options
| author | Jeff Carr <[email protected]> | 2024-01-08 23:53:53 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-08 23:53:53 -0600 |
| commit | 7ac6f3e85bc7dad9f37575f2e024966d720dc819 (patch) | |
| tree | 5a8b0424c06bf8b4bcfe03243576bbec4e77ee89 /args.go | |
| parent | 894f77b3ce9572b81e7f2c657feeee3bc901ae0c (diff) | |
go.wit.com/log change
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'args.go')
| -rw-r--r-- | args.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,11 +6,11 @@ import ( "go.wit.com/log" ) -var INFO log.LogFlag +var INFO *log.LogFlag func init() { full := "go.wit.com/gui/gadget" short := "gadgets" - INFO.NewFlag("INFO", false, full, short, "General Info") + INFO = log.NewFlag("INFO", false, full, short, "General Info") } |
