2021-09-03 06:48:15 +12:00
|
|
|
package pionlog
|
|
|
|
|
|
|
|
type nulllog struct{}
|
|
|
|
|
2022-07-28 22:20:20 +12:00
|
|
|
func (l nulllog) Trace(msg string) {}
|
|
|
|
func (l nulllog) Tracef(format string, args ...any) {}
|
|
|
|
func (l nulllog) Debug(msg string) {}
|
|
|
|
func (l nulllog) Debugf(format string, args ...any) {}
|
|
|
|
func (l nulllog) Info(msg string) {}
|
|
|
|
func (l nulllog) Infof(format string, args ...any) {}
|
|
|
|
func (l nulllog) Warn(msg string) {}
|
|
|
|
func (l nulllog) Warnf(format string, args ...any) {}
|
|
|
|
func (l nulllog) Error(msg string) {}
|
|
|
|
func (l nulllog) Errorf(format string, args ...any) {}
|