1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-05-12 18:44:50 +00:00

Run gofmt to keep people happy!

This commit is contained in:
Alex Bramley 2018-09-06 22:15:14 +01:00
parent 90556d7c97
commit 47162eb0b8
5 changed files with 16 additions and 9 deletions

View file

@ -2,8 +2,8 @@ package glog
import (
"fmt"
"github.com/golang/glog"
"github.com/fluffle/goirc/logging"
"github.com/golang/glog"
)
// Simple adapter to utilise Google's GLog package with goirc.

View file

@ -1,8 +1,8 @@
package golog
import (
log "github.com/fluffle/golog/logging"
"github.com/fluffle/goirc/logging"
log "github.com/fluffle/golog/logging"
)
// Simple adapter to utilise my logging package with goirc.

View file

@ -31,13 +31,14 @@ func SetLogger(l Logger) {
// A nullLogger does nothing while fulfilling Logger.
type nullLogger struct{}
func (nl nullLogger) Debug(f string, a ...interface{}) {}
func (nl nullLogger) Info(f string, a ...interface{}) {}
func (nl nullLogger) Warn(f string, a ...interface{}) {}
func (nl nullLogger) Info(f string, a ...interface{}) {}
func (nl nullLogger) Warn(f string, a ...interface{}) {}
func (nl nullLogger) Error(f string, a ...interface{}) {}
// Shim functions so that the package can be used directly
func Debug(f string, a ...interface{}) { logger.Debug(f, a...) }
func Info(f string, a ...interface{}) { logger.Info(f, a...) }
func Warn(f string, a ...interface{}) { logger.Warn(f, a...) }
func Info(f string, a ...interface{}) { logger.Info(f, a...) }
func Warn(f string, a ...interface{}) { logger.Warn(f, a...) }
func Error(f string, a ...interface{}) { logger.Error(f, a...) }