From 1324717de0a1ccd830ca34aa03e0faa9e6d93a83 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 1 Jan 2024 00:56:59 -0600 Subject: [PATCH] add log.Register(INFO) and go-arg support Signed-off-by: Jeff Carr --- digitalocean/args.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 digitalocean/args.go diff --git a/digitalocean/args.go b/digitalocean/args.go new file mode 100644 index 0000000..246f72d --- /dev/null +++ b/digitalocean/args.go @@ -0,0 +1,27 @@ +package digitalocean + +// initializes logging and command line options + +import ( + arg "github.com/alexflint/go-arg" + log "go.wit.com/log" +) + +var INFO log.LogFlag +var argDo ArgsDo + +// This struct can be used with the go-arg package +type ArgsDo struct { + DigitalOceanTimer bool `arg:"--digitalocean-poll-interval" help:"how often to poll droplet status (default 60 seconds)"` +} + +func init() { + arg.Register(&argDo) + + INFO.B = false + INFO.Name = "INFO" + INFO.Subsystem = "digitalocean" + INFO.Desc = "Enable log.Info()" + + INFO.Register() +}