Since the color codes were displayed in an inappropriate manner, removed them from all logs .
36 lines
793 B
Go
36 lines
793 B
Go
package elektronLogging
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"strings"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type ElektronFormatter struct {
|
|
TimestampFormat string
|
|
}
|
|
|
|
func (f ElektronFormatter) Format(entry *log.Entry) ([]byte, error) {
|
|
var b *bytes.Buffer
|
|
|
|
if entry.Buffer != nil {
|
|
b = entry.Buffer
|
|
} else {
|
|
b = &bytes.Buffer{}
|
|
}
|
|
|
|
level := fmt.Sprintf("[%s]:", strings.ToUpper(entry.Level.String()))
|
|
message := strings.Join([]string{level, entry.Time.Format(f.TimestampFormat), entry.Message, " "}, " ")
|
|
|
|
var formattedFields []string
|
|
for key, value := range entry.Data {
|
|
formattedFields = append(formattedFields, strings.Join([]string{key, value.(string)}, "="))
|
|
}
|
|
|
|
b.WriteString(message)
|
|
b.WriteString(strings.Join(formattedFields, ", "))
|
|
b.WriteByte('\n')
|
|
return b.Bytes(), nil
|
|
}
|