Having an additional Client has added some confusion (https://github.com/harlow/kinesis-consumer/issues/45) on how to provide a custom kinesis client. Allowing `WithClient` to accept a Kinesis client it cleans up the interface. Major changes: * Remove the Client wrapper; prefer using kinesis client directly * Change `ScanError` to `ScanStatus` as the return value isn't necessarily an error Note: these are breaking changes, if you need last stable release please see here: https://github.com/harlow/kinesis-consumer/releases/tag/v0.2.0
22 lines
439 B
Go
22 lines
439 B
Go
package consumer
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
// A Logger is a minimal interface to as a adaptor for external logging library to consumer
|
|
type Logger interface {
|
|
Log(...interface{})
|
|
}
|
|
|
|
type LoggerFunc func(...interface{})
|
|
|
|
// noopLogger implements logger interface with discard
|
|
type noopLogger struct {
|
|
logger *log.Logger
|
|
}
|
|
|
|
// Log using stdlib logger. See log.Println.
|
|
func (l noopLogger) Log(args ...interface{}) {
|
|
l.logger.Println(args...)
|
|
}
|