mirror of
https://github.com/redis/go-redis.git
synced 2025-04-19 07:22:17 +03:00
13 lines
193 B
Go
13 lines
193 B
Go
package internal
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
type Logging interface {
|
|
Printf(format string, v ...interface{})
|
|
}
|
|
|
|
var Logger Logging = log.New(os.Stderr, "redis: ", log.LstdFlags|log.Lshortfile)
|