time_testing.go 214 B

1234567891011121314
  1. //go:build go1.21
  2. package log
  3. import (
  4. "testing"
  5. )
  6. func init() {
  7. if testing.Testing() {
  8. DefaultTimeFormatter = TimeFormatSecondsSinceInit
  9. DefaultTimeAppendFormatter = TimeAppendFormatSecondsSinceInit
  10. }
  11. }