ADDED: * math, time functions to tplx/sprigx FIXED: * logging not initializing properly on some BSDs
12 lines
234 B
Go
12 lines
234 B
Go
//go:build !(windows || plan9 || wasip1 || js || ios || linux)
|
|
|
|
package logging
|
|
|
|
var (
|
|
// defLogPaths indicates default log paths.
|
|
defLogPaths = []string{
|
|
"/var/log/golang/program.log",
|
|
"~/Library/Logs/Golang/program.log",
|
|
}
|
|
)
|