mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-12-01 20:45:41 +00:00
72ac04e7ca
With: $ git mv vendor/github.com/{S,s}irupsen $ sed -i 's/Sirupsen/sirupsen/g' $(git grep -l Sirupsen) catching up with the upstream lowercasing [1,2,3,4]. Because of the compatibility issues discussed in [3], some consumers may prefer to use the old uppercase version until they have time to update their other Logrus consumers to the new lowercase form. [1]: https://github.com/sirupsen/logrus/blame/v1.0.3/README.md#L6 [2]: https://github.com/sirupsen/logrus/pull/384 [3]: https://github.com/sirupsen/logrus/issues/570#issuecomment-313933276 [4]: https://github.com/sirupsen/logrus/issues/553
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
// +build !windows,!nacl,!plan9
|
|
|
|
package syslog
|
|
|
|
import (
|
|
"fmt"
|
|
"log/syslog"
|
|
"os"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// SyslogHook to send logs via syslog.
|
|
type SyslogHook struct {
|
|
Writer *syslog.Writer
|
|
SyslogNetwork string
|
|
SyslogRaddr string
|
|
}
|
|
|
|
// Creates a hook to be added to an instance of logger. This is called with
|
|
// `hook, err := NewSyslogHook("udp", "localhost:514", syslog.LOG_DEBUG, "")`
|
|
// `if err == nil { log.Hooks.Add(hook) }`
|
|
func NewSyslogHook(network, raddr string, priority syslog.Priority, tag string) (*SyslogHook, error) {
|
|
w, err := syslog.Dial(network, raddr, priority, tag)
|
|
return &SyslogHook{w, network, raddr}, err
|
|
}
|
|
|
|
func (hook *SyslogHook) Fire(entry *logrus.Entry) error {
|
|
line, err := entry.String()
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "Unable to read entry, %v", err)
|
|
return err
|
|
}
|
|
|
|
switch entry.Level {
|
|
case logrus.PanicLevel:
|
|
return hook.Writer.Crit(line)
|
|
case logrus.FatalLevel:
|
|
return hook.Writer.Crit(line)
|
|
case logrus.ErrorLevel:
|
|
return hook.Writer.Err(line)
|
|
case logrus.WarnLevel:
|
|
return hook.Writer.Warning(line)
|
|
case logrus.InfoLevel:
|
|
return hook.Writer.Info(line)
|
|
case logrus.DebugLevel:
|
|
return hook.Writer.Debug(line)
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (hook *SyslogHook) Levels() []logrus.Level {
|
|
return logrus.AllLevels
|
|
}
|