logger.go 326 B

12345678910
  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. package elastic
  5. // Logger specifies the interface for all log operations.
  6. type Logger interface {
  7. Printf(format string, v ...interface{})
  8. }