e1.4.4 Fix module path and dependency issues, compatibility package added.

This commit is contained in:
2025-07-08 22:13:11 -04:00
parent 7ce7158841
commit ccbe65bf40
22 changed files with 776 additions and 29 deletions

View File

@ -1,4 +1,4 @@
// --- File: state.go ---
// FILE: state.go
package log
import (
@ -9,7 +9,7 @@ import (
"sync/atomic"
"time"
"github.com/LixenWraith/config"
"github.com/lixenwraith/config"
)
// State encapsulates the runtime state of the logger
@ -220,4 +220,4 @@ func (l *Logger) Flush(timeout time.Duration) error {
case <-time.After(timeout):
return fmtErrorf("timeout waiting for flush confirmation (%v)", timeout)
}
}
}