v0.1.9 kv flag added, unix and nofs build tags, heartbeat and rotation filename and test update

This commit is contained in:
2026-08-01 05:09:51 -04:00
parent 24b7deebdb
commit 2af9af2359
15 changed files with 873 additions and 481 deletions
+11
View File
@@ -0,0 +1,11 @@
//go:build !unix
package log
import "math"
// getDiskFreeSpace reports unlimited space where statfs is unavailable.
// Total-size limits still apply; only the free-space check is inert.
func (l *Logger) getDiskFreeSpace(path string) (int64, error) {
return math.MaxInt64, nil
}