2013-09-27 21:31:33 +00:00
|
|
|
package glog
|
|
|
|
|
|
|
|
import (
|
2015-01-02 14:35:03 +00:00
|
|
|
"fmt"
|
|
|
|
"github.com/fluffle/goirc/logging"
|
2018-09-06 21:15:14 +00:00
|
|
|
"github.com/golang/glog"
|
2013-09-27 21:31:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Simple adapter to utilise Google's GLog package with goirc.
|
2015-01-02 14:35:03 +00:00
|
|
|
// Just import this package alongside goirc/client and call
|
|
|
|
// glog.Init() in your main() to set things up.
|
2013-09-27 21:31:33 +00:00
|
|
|
type GLogger struct{}
|
|
|
|
|
|
|
|
func (gl GLogger) Debug(f string, a ...interface{}) {
|
|
|
|
// GLog doesn't have a "Debug" level, so use V(2) instead.
|
2015-01-02 14:35:03 +00:00
|
|
|
if glog.V(2) {
|
|
|
|
glog.InfoDepth(3, fmt.Sprintf(f, a...))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (gl GLogger) Info(f string, a ...interface{}) {
|
|
|
|
glog.InfoDepth(3, fmt.Sprintf(f, a...))
|
|
|
|
}
|
|
|
|
func (gl GLogger) Warn(f string, a ...interface{}) {
|
|
|
|
glog.WarningDepth(3, fmt.Sprintf(f, a...))
|
|
|
|
}
|
|
|
|
func (gl GLogger) Error(f string, a ...interface{}) {
|
|
|
|
glog.ErrorDepth(3, fmt.Sprintf(f, a...))
|
|
|
|
}
|
|
|
|
|
|
|
|
func Init() {
|
|
|
|
logging.SetLogger(GLogger{})
|
2013-09-27 21:31:33 +00:00
|
|
|
}
|