logrus/entry.go

196 lines
4.1 KiB
Go
Raw Normal View History

2014-02-24 00:50:42 +00:00
package logrus
import (
"bytes"
"fmt"
"io"
"os"
"time"
)
type Entry struct {
logger *Logger
Data Fields
}
2014-03-04 16:38:21 +00:00
var baseTimestamp time.Time
func init() {
baseTimestamp = time.Now()
}
func miniTS() int {
return int(time.Since(baseTimestamp) / time.Second)
}
2014-02-24 00:50:42 +00:00
func NewEntry(logger *Logger) *Entry {
return &Entry{
logger: logger,
2014-03-10 23:22:08 +00:00
// Default is three fields, give a little extra room
2014-02-24 00:50:42 +00:00
Data: make(Fields, 5),
}
}
2014-02-24 11:34:12 +00:00
func (entry *Entry) Reader() (*bytes.Buffer, error) {
2014-03-10 23:22:08 +00:00
serialized, err := entry.logger.Formatter.Format(entry)
return bytes.NewBuffer(serialized), err
}
func (entry *Entry) String() (string, error) {
reader, err := entry.Reader()
if err != nil {
return "", err
}
2014-02-24 00:50:42 +00:00
2014-03-10 23:22:08 +00:00
return reader.String(), err
2014-02-24 00:50:42 +00:00
}
func (entry *Entry) WithField(key string, value interface{}) *Entry {
entry.Data[key] = value
return entry
}
func (entry *Entry) WithFields(fields Fields) *Entry {
for key, value := range fields {
entry.WithField(key, value)
}
return entry
}
2014-03-12 14:10:22 +00:00
func (entry *Entry) log(level string, levelInt Level, msg string) string {
2014-02-24 00:53:50 +00:00
entry.Data["time"] = time.Now().String()
2014-02-24 00:50:42 +00:00
entry.Data["level"] = level
entry.Data["msg"] = msg
reader, err := entry.Reader()
if err != nil {
2014-03-03 22:35:32 +00:00
fmt.Fprintf(os.Stderr, "Failed to obtain reader, %v", err)
2014-02-24 00:50:42 +00:00
}
2014-03-12 14:10:22 +00:00
if err := entry.logger.Hooks.Fire(levelInt, entry); err != nil {
fmt.Fprintf(os.Stderr, "Failed to fire hook", err)
}
2014-02-24 11:34:12 +00:00
entry.logger.mu.Lock()
defer entry.logger.mu.Unlock()
_, err = io.Copy(entry.logger.Out, reader)
if err != nil {
2014-03-10 23:22:08 +00:00
fmt.Fprintf(os.Stderr, "Failed to write to log, %v", err)
2014-02-24 00:50:42 +00:00
}
2014-02-24 11:34:12 +00:00
return reader.String()
2014-02-24 00:50:42 +00:00
}
func (entry *Entry) Debug(args ...interface{}) {
2014-03-10 23:52:39 +00:00
if entry.logger.Level >= Debug {
2014-03-12 14:10:22 +00:00
entry.log("debug", Debug, fmt.Sprint(args...))
2014-03-10 23:52:39 +00:00
entry.logger.Hooks.Fire(Debug, entry)
2014-02-24 00:50:42 +00:00
}
}
2014-03-10 23:59:18 +00:00
func (entry *Entry) Print(args ...interface{}) {
entry.Info(args...)
}
2014-02-24 00:50:42 +00:00
func (entry *Entry) Info(args ...interface{}) {
2014-03-10 23:52:39 +00:00
if entry.logger.Level >= Info {
2014-03-12 14:10:22 +00:00
entry.log("info", Info, fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}
}
2014-03-10 23:22:08 +00:00
func (entry *Entry) Warn(args ...interface{}) {
2014-03-10 23:52:39 +00:00
if entry.logger.Level >= Warn {
2014-03-12 14:10:22 +00:00
entry.log("warning", Warn, fmt.Sprint(args...))
2014-03-10 23:22:08 +00:00
}
}
func (entry *Entry) Error(args ...interface{}) {
2014-03-10 23:52:39 +00:00
if entry.logger.Level >= Error {
2014-03-12 14:10:22 +00:00
entry.log("error", Error, fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}
}
func (entry *Entry) Fatal(args ...interface{}) {
2014-03-10 23:52:39 +00:00
if entry.logger.Level >= Fatal {
2014-03-12 14:10:22 +00:00
entry.log("fatal", Fatal, fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}
os.Exit(1)
}
func (entry *Entry) Panic(args ...interface{}) {
2014-03-10 23:52:39 +00:00
if entry.logger.Level >= Panic {
2014-03-12 14:10:22 +00:00
msg := entry.log("panic", Panic, fmt.Sprint(args...))
2014-02-24 11:34:12 +00:00
panic(msg)
2014-02-24 00:50:42 +00:00
}
2014-02-24 11:34:12 +00:00
panic(fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}
// Entry Printf family functions
func (entry *Entry) Debugf(format string, args ...interface{}) {
entry.Debug(fmt.Sprintf(format, args...))
}
func (entry *Entry) Infof(format string, args ...interface{}) {
entry.Info(fmt.Sprintf(format, args...))
}
func (entry *Entry) Printf(format string, args ...interface{}) {
2014-03-10 23:52:39 +00:00
entry.Info(fmt.Sprintf(format, args...))
2014-02-24 00:50:42 +00:00
}
2014-03-10 23:22:08 +00:00
func (entry *Entry) Warnf(format string, args ...interface{}) {
entry.Warn(fmt.Sprintf(format, args...))
}
2014-02-24 00:50:42 +00:00
func (entry *Entry) Warningf(format string, args ...interface{}) {
2014-03-10 23:22:08 +00:00
entry.Warn(fmt.Sprintf(format, args...))
}
func (entry *Entry) Errorf(format string, args ...interface{}) {
2014-03-10 23:52:39 +00:00
entry.Error(fmt.Sprintf(format, args...))
2014-02-24 00:50:42 +00:00
}
func (entry *Entry) Fatalf(format string, args ...interface{}) {
entry.Fatal(fmt.Sprintf(format, args...))
}
func (entry *Entry) Panicf(format string, args ...interface{}) {
entry.Panic(fmt.Sprintf(format, args...))
}
// Entry Println family functions
func (entry *Entry) Debugln(args ...interface{}) {
2014-03-10 23:22:08 +00:00
entry.Debug(fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}
func (entry *Entry) Infoln(args ...interface{}) {
2014-03-10 23:22:08 +00:00
entry.Info(fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}
func (entry *Entry) Println(args ...interface{}) {
2014-03-10 23:52:39 +00:00
entry.Info(fmt.Sprint(args...))
2014-03-10 23:22:08 +00:00
}
func (entry *Entry) Warnln(args ...interface{}) {
entry.Warn(fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}
func (entry *Entry) Warningln(args ...interface{}) {
2014-03-10 23:22:08 +00:00
entry.Warn(fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}
2014-03-10 23:22:08 +00:00
func (entry *Entry) Errorln(args ...interface{}) {
entry.Error(fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}
2014-03-10 23:22:08 +00:00
func (entry *Entry) Fatalln(args ...interface{}) {
entry.Fatal(fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}
2014-03-10 23:22:08 +00:00
func (entry *Entry) Panicln(args ...interface{}) {
entry.Panic(fmt.Sprint(args...))
2014-02-24 00:50:42 +00:00
}