update... work pending

This commit is contained in:
brent saner
2025-02-04 12:14:08 -05:00
parent 3b4d712722
commit 3c984a0636
39 changed files with 2122 additions and 597 deletions

View File

@@ -0,0 +1,17 @@
//go:build windows
package main
import (
`r00t2.io/goutils/logging`
)
// getOsLogger adds the default logger per OS.
func getOsLogger(logger *logging.MultiLogger, logFlagsRuntime int) (err error) {
if err = logger.AddDefaultLogger("default", logging.DefaultEventID, logFlagsRuntime, `C:\GoBroke\GoBroke.log`, `~\GoBroke\GoBroke.log`); err != nil {
return
}
return
}