Files
mc-gateway/cmd/gateway/log_notunix.go
2025-07-06 21:07:54 +08:00

16 lines
336 B
Go

// pid_unix.go
//go:build !unix && !plan9
package main
import (
"github.com/rs/zerolog/log"
)
func handleLogRotate() {
// No-op for non-unix platforms
// Log rotation is not supported on this platform
// This function can be left empty or removed if not needed
log.Info().Msg("Log rotation is not supported on this platform")
}