genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/lib/log/log.go

34 lines
701 B
Go
Raw Normal View History

2017-04-28 10:14:59 +02:00
// Package log provides the
// functionality to start und initialize to logger
package log
2017-03-30 14:49:14 +02:00
import (
"log"
"net/http"
logger "github.com/Sirupsen/logrus"
)
2017-04-28 10:27:36 +02:00
// current logger with configuration
2017-03-30 14:49:14 +02:00
var Log *logger.Logger
2017-04-28 10:14:59 +02:00
// Function to initiate a new logger
2017-03-30 17:02:20 +02:00
func init() {
2017-03-30 14:49:14 +02:00
Log = logger.New()
2017-04-28 10:14:59 +02:00
log.SetOutput(Log.Writer()) // Enable fallback if core logger
2017-03-30 14:49:14 +02:00
}
2017-04-28 10:14:59 +02:00
// Function to add the information of a http request to the log
// Input: pointer to the http request r
func HTTP(r *http.Request) *logger.Entry {
2017-03-30 14:49:14 +02:00
ip := r.Header.Get("X-Forwarded-For")
if len(ip) <= 1 {
ip = r.RemoteAddr
}
return Log.WithFields(logger.Fields{
2017-03-30 17:02:20 +02:00
"remote": ip,
2017-03-30 14:49:14 +02:00
"method": r.Method,
2017-03-30 17:02:20 +02:00
"url": r.URL.RequestURI(),
2017-03-30 14:49:14 +02:00
})
}