debian-forge-composer/internal/common/slogger/noop.go
2022-09-09 16:27:38 +02:00

18 lines
296 B
Go

package slogger
import (
"github.com/osbuild/osbuild-composer/pkg/jobqueue"
)
type noopLogger struct {
}
func NewNoopLogger() jobqueue.SimpleLogger {
return &noopLogger{}
}
func (s *noopLogger) Info(_ string, _ ...string) {
}
func (s *noopLogger) Error(_ error, _ string, _ ...string) {
}