mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-28 22:12:00 -08:00
10 lines
236 B
Go
10 lines
236 B
Go
package test
|
|
|
|
import "github.com/bluenviron/mediamtx/internal/logger"
|
|
|
|
// NilLogger is a logger to /dev/null
|
|
type NilLogger struct{}
|
|
|
|
// Log implements logger.Writer.
|
|
func (NilLogger) Log(_ logger.Level, _ string, _ ...interface{}) {
|
|
}
|