mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-19 22:00:11 +08:00
16 lines
235 B
Go
16 lines
235 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
easy "github.com/t-tomalak/logrus-easy-formatter"
|
|
)
|
|
|
|
func init() {
|
|
logrus.SetFormatter(&easy.Formatter{
|
|
LogFormat: "[%lvl%] %msg%\n",
|
|
})
|
|
}
|