0
0
Fork 0

fix go vet issue

This commit is contained in:
Marty Schoch 2014-12-29 09:28:24 -08:00
parent af13ad51be
commit b4add7fbf4
1 changed files with 2 additions and 2 deletions

View File

@ -41,6 +41,6 @@ var logger = log.New(ioutil.Discard, "bleve.http", log.LstdFlags)
// SetLog sets the logger used for logging
// by default log messages are sent to ioutil.Discard
func SetLog(logger *log.Logger) {
logger = logger
func SetLog(l *log.Logger) {
logger = l
}