We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can setup the default textformatter to display fulltimestamps like so
package main import ( log "github.com/sirupsen/logrus" ) func init() { log.SetFormatter(&log.TextFormatter{FullTimestamp: true}) } func main() { log.Println("Fulltimestamp here") }