more general syslog support

This commit is contained in:
brent saner
2025-02-10 12:35:40 -05:00
parent fd720f2b34
commit a0c6df14aa
11 changed files with 288 additions and 108 deletions

9
logging/consts_darwin.go Normal file
View File

@@ -0,0 +1,9 @@
package logging
var (
// defLogPaths indicates default log paths.
defLogPaths = []string{
"/var/log/golang/program.log",
"~/Library/Logs/Golang/program.log",
}
)