mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
12 lines
243 B
Go
12 lines
243 B
Go
|
package hystrix
|
||
|
|
||
|
type logger interface {
|
||
|
Printf(format string, items ...interface{})
|
||
|
}
|
||
|
|
||
|
// NoopLogger does not log anything.
|
||
|
type NoopLogger struct{}
|
||
|
|
||
|
// Printf does nothing.
|
||
|
func (l NoopLogger) Printf(format string, items ...interface{}) {}
|