mirror of https://github.com/sirupsen/logrus.git
Log just the message, not the stringified version of the whole log line.
This commit is contained in:
parent
0a2a97ea82
commit
29c4caff54
|
@ -31,6 +31,7 @@ func NewPapertrailHook(host string, port int, appName string) (*PapertrailHook,
|
||||||
func (hook *PapertrailHook) Fire(entry *logrus.Entry) error {
|
func (hook *PapertrailHook) Fire(entry *logrus.Entry) error {
|
||||||
defer hook.UDPConn.Close()
|
defer hook.UDPConn.Close()
|
||||||
date := time.Now().Format(format)
|
date := time.Now().Format(format)
|
||||||
|
payload := fmt.Sprintf("<22> %s %s: [%s] %s", date, hook.AppName, entry.Data["level"], entry.Message)
|
||||||
|
|
||||||
line, err := entry.String()
|
line, err := entry.String()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue