18 lines
276 B
Go
18 lines
276 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func configureLog() {
|
|
log.SetFormatter(&log.TextFormatter{
|
|
FullTimestamp: true,
|
|
TimestampFormat: time.StampMilli,
|
|
DisableSorting: false,
|
|
PadLevelText: true,
|
|
})
|
|
log.SetLevel(log.InfoLevel)
|
|
}
|