debugger/args.go

38 lines
916 B
Go
Raw Normal View History

2024-01-03 11:18:56 -06:00
package debugger
// initializes logging and command line options
import (
"go.wit.com/dev/alexflint/arg"
"go.wit.com/log"
2024-01-03 11:18:56 -06:00
)
var INFO *log.LogFlag
var POLL *log.LogFlag
var CHAN *log.LogFlag
var WARN *log.LogFlag
2024-01-03 11:18:56 -06:00
var argDebugger ArgsDebugger
// This struct can be used with the go-arg package
type ArgsDebugger struct {
Debugger bool `arg:"--debugger" help:"open the debugger window"`
}
// returns true if --gui-debug was passed from the command line
func ArgDebug() bool {
return argDebugger.Debugger
}
2024-01-03 11:18:56 -06:00
func init() {
arg.Register(&argDebugger)
full := "go.wit.com/bug/debugger"
short := "bugger"
INFO = log.NewFlag("INFO", false, full, short, "simple debugging Info()")
POLL = log.NewFlag("POLL", false, full, short, "watch the debugger poll things")
CHAN = log.NewFlag("CHAN", true, full, short, "chan() test code output")
WARN = log.NewFlag("WARN", true, full, short, "should warn the user")
2024-01-03 11:18:56 -06:00
}