mirror of
https://github.com/moby/moby.git
synced 2026-08-07 16:41:50 +00:00
https://github.com/microsoft/hcsshim/compare/v0.11.7...v0.12.5 Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
13 lines
250 B
Go
13 lines
250 B
Go
package log
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type NopFormatter struct{}
|
|
|
|
var _ logrus.Formatter = NopFormatter{}
|
|
|
|
// Format does nothing and returns a nil slice.
|
|
func (NopFormatter) Format(*logrus.Entry) ([]byte, error) { return nil, nil }
|