1// Copyright 2012-present Oliver Eilhard. All rights reserved.
2// Use of this source code is governed by a MIT-license.
3// See http://olivere.mit-license.org/license.txt for details.
4
5package elastic
6
7// Logger specifies the interface for all log operations.
8type Logger interface {
9	Printf(format string, v ...interface{})
10}
11