1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Cleanup loggers.

This commit is contained in:
Vladimir Mihailenco
2016-06-05 08:05:50 +00:00
parent c0622ff8dc
commit e9233d8d17
2 changed files with 3 additions and 12 deletions

View File

@ -2,21 +2,14 @@ package internal
import (
"fmt"
"io/ioutil"
"log"
)
var Debug bool
var Logger *log.Logger
var Logger = log.New(ioutil.Discard, "redis: ", log.LstdFlags)
func Debugf(s string, args ...interface{}) {
if !Debug {
func Logf(s string, args ...interface{}) {
if Logger == nil {
return
}
Logger.Output(2, fmt.Sprintf(s, args...))
}
func Logf(s string, args ...interface{}) {
Logger.Output(2, fmt.Sprintf(s, args...))
}