summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/olivere/elastic/logger.go
blob: 095eb4cd4e0c693ecf540e6db4e79db6523477d2 (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright 2012-present Oliver Eilhard. All rights reserved.
// Use of this source code is governed by a MIT-license.
// See http://olivere.mit-license.org/license.txt for details.

package elastic

// Logger specifies the interface for all log operations.
type Logger interface {
	Printf(format string, v ...interface{})
}