diff options
| author | Jeff Carr <[email protected]> | 2025-01-08 03:13:09 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-08 03:13:09 -0600 |
| commit | b0fca659c57dd2cb6a88a74d1a349117a3908124 (patch) | |
| tree | d1e43473858cead9872a4652aaaeed85dd2afd38 /log.go | |
| parent | ebda2ea222ed9f1d348d5d3e0cffb9c9f9c0acec (diff) | |
fix the dumb names
Diffstat (limited to 'log.go')
| -rw-r--r-- | log.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,13 +4,13 @@ import ( "go.wit.com/log" ) -var GITPB *log.LogFlag -var GITPBWARN *log.LogFlag +var INFO *log.LogFlag +var WARN *log.LogFlag func init() { full := "go.wit.com/lib/protobuf/gitpb" short := "gitpb" - GITPB = log.NewFlag("GITPB", false, full, short, "general gitpb things") - GITPBWARN = log.NewFlag("GITPBWARN", true, full, short, "gitpb warnings") + INFO = log.NewFlag("INFO", false, full, short, "general gitpb things") + WARN = log.NewFlag("WARN", true, full, short, "gitpb warnings") } |
