multi: move logcompressor to logging.file.compressor

This is not a breaking change since the logcompressor config option has
not been released yet.
This commit is contained in:
Elle Mouton
2024-10-29 17:58:23 +02:00
parent 1886d3865b
commit 3adbdbb39a
6 changed files with 37 additions and 15 deletions

View File

@@ -48,7 +48,7 @@ func (r *RotatingLogWriter) InitLogRotator(logFile, logCompressor string,
}
// Reject unknown compressors.
if !SuportedLogCompressor(logCompressor) {
if !SupportedLogCompressor(logCompressor) {
return fmt.Errorf("unknown log compressor: %v", logCompressor)
}