mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-16 04:24:56 +02:00
15 lines
236 B
Go
15 lines
236 B
Go
package log
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func init() {
|
|
// Initialize logger
|
|
formatter := log.TextFormatter{
|
|
FullTimestamp: true,
|
|
TimestampFormat: "2006-01-02 15:04:05.0000",
|
|
}
|
|
|
|
log.SetFormatter(&formatter)
|
|
}
|