支持GORM的日志接管,适配其日志的打印。

https://github.com/aohanhongzhi/gormv2-logrus

这里注意一个点,本来下面这行查询语句并不是日志记录语句,而是通过特殊栈查找,打印的该文件和行号,这样方便GORM定位与调试。

Human-readable log formatter, converts logrus fields to a nested structure:

Configuration:

type Formatter struct {
	// FieldsOrder - default: fields sorted alphabetically
	FieldsOrder []string
	// TimestampFormat - default: time.StampMilli = "Jan _2 15:04:05.000"
	TimestampFormat string
	// HideKeys - show [fieldValue] instead of [fieldKey:fieldValue]
	HideKeys bool
	// NoColors - disable colors
	NoColors bool
	// NoFieldsColors - apply colors only to the level, default is level + fields
	NoFieldsColors bool
	// NoFieldsSpace - no space between fields
	NoFieldsSpace bool
	// ShowFullLevel - show a full level [WARNING] instead of [WARN]
	ShowFullLevel bool
	// NoUppercaseLevel - no upper case for level value
	NoUppercaseLevel bool
	// TrimMessages - trim whitespaces on messages
	TrimMessages bool
	// CallerFirst - print caller info first
	CallerFirst bool
	// CustomCallerFormatter - set custom formatter for caller info
	CustomCallerFormatter func(*runtime.Frame) string

Usage

import (
	nested "github.com/antonfisher/nested-logrus-formatter"
	"github.com/sirupsen/logrus"
log := logrus.New()
log.SetFormatter(&nested.Formatter{
	HideKeys:    true,
	FieldsOrder: []string{"component", "category"},
log.Info("just info message")
// Output: Jan _2 15:04:05.000 [INFO] just info message
log.WithField("component", "rest").Warn("warn message")
// Output: Jan _2 15:04:05.000 [WARN] [rest] warn message

See more examples in the tests file.

Development

# run tests:
make test
# run demo:
make demo
GOPROXY=https://goproxy.cn,direct
GOPROXY=https://goproxy.io,direct

新的使用方式

	nested "github.com/aohanhongzhi/nested-logrus-formatter"
	log "github.com/sirupsen/logrus"
    //手动初始化下就好了
    nested.LogInit(true)
	// -noConsole=true 在启动命令行加上这个,就可以实现线上不需要控制台输出,本地开发需要控制台。
	noConsole := flag.Bool("noConsole", false, "开发环境")
	flag.Parse()
	// 数据库配置
	gin.DefaultWriter = nested.LogInit(*noConsole)

配合gin使用

    gin.DefaultWriter = nested.LogInit(true)

配合gorm使用

github.com/aohanhongzhi/gormv2-logrus

	gormLogger := gormv2logrus.NewGormlog(gormv2logrus.WithLogrus(logrus.StandardLogger()))
	gormLogger.LogMode(logger.Warn)
	gormConfig := &gorm.Config{
		Logger: gormLogger,
		NamingStrategy: schema.NamingStrategy{
			TablePrefix:   "tb_",
			SingularTable: true,
	// 数据库配置
	var err error
	dsn := "username:password@tcp(mysq.host.com:3306)/km?charset=utf8mb4&parseTime=True&loc=Local"
	Gormdb, err = gorm.Open(
		mysql.New(mysql.Config{
			DSN:               dsn,
			DefaultStringSize: 256,
		}), gormConfig)
	if err != nil {
		panic("failed to connect database")
	Gormdb.AutoMigrate(&model.NPCComputerInfo{})
git tag v1.5.2
git push --tags 
replace github.com/aohanhongzhi/nested-logrus-formatter => /home/eric/Project/Go/nested-logrus-formatter
      
      
        func LogInit(noConsole bool) io.Writer
        func LogInitRobot(noConsole, robot bool, appName string) io.Writer
        func LogInitWithLevel(noConsole bool, appName string, level log.Level) io.Writer
        func LogInitWithName(noConsole bool, appName string) io.Writer
        func LogrusInit(noConsole bool, appName, dir string, level log.Level) io.Writer
        func PanicHandler()
        func RequestJson(method string, url string, paramBody io.Reader, headerMap map[string]string)
        func SendRobotMessage(content string, talkType, ReceiverId, RobotId int)
        func SendToRobotMessage(appName, msg string, talkType, ReceiverId, RobotId int)
          type Formatter
            func (f *Formatter) Format(entry *logrus.Entry) ([]byte, error)
          type MailAuthHook
            func NewMailAuthHook(appname string, host string, port int, from string, to string, username string, ...) (*MailAuthHook, error)
            func (hook *MailAuthHook) Fire(entry *logrus.Entry) error
            func (hook *MailAuthHook) Levels() []logrus.Level
          type MailHook
            func NewMailHook(appname string, host string, port int, from string, to string) (*MailHook, error)
            func (hook *MailHook) Fire(entry *logrus.Entry) error
            func (hook *MailHook) Levels() []logrus.Level
          type MessageParamIM
          type NewMessageParamIM
          type NewRobotTextMessageRequest
          type RobotLog
            func NewRobotLogger(AppName string) *RobotLog
            func (hook *RobotLog) Fire(entry *log.Entry) error
            func (hook *RobotLog) Levels() []log.Level
          type TenantAccessTokenBody

Constants

This section is empty.

Variables

View Source
var AppName string
func LogInitRobot(noConsole, robot bool, appName string) io.Writer

本配置处理了三个日志输出,1. 控制台(二选一) 2. all.log 所有日志 (二选一) 3. log文件夹下面的分级日志(一定会输出) Deprecated

type Formatter struct {
	// FieldsOrder - default: fields sorted alphabetically
	FieldsOrder []string
	// TimestampFormat - default: time.StampMilli = "Jan _2 15:04:05.000"
	TimestampFormat string
	// HideKeys - show [fieldValue] instead of [fieldKey:fieldValue]
	HideKeys bool
	// NoColors - disable colors
	NoColors bool
	// NoFieldsColors - apply colors only to the level, default is level + fields
	NoFieldsColors bool
	// NoFieldsSpace - no space between fields
	NoFieldsSpace bool
	// ShowFullLevel - show a full level [WARNING] instead of [WARN]
	ShowFullLevel bool
	// NoUppercaseLevel - no upper case for level value
	NoUppercaseLevel bool
	// TrimMessages - trim whitespaces on messages
	TrimMessages bool
	// CallerFirst - print caller info first
	CallerFirst bool
	// CustomCallerFormatter - set custom formatter for caller info
	CustomCallerFormatter func(*runtime.Frame) string
  

Formatter - logrus formatter, implements logrus.Formatter

func NewMailAuthHook(appname string, host string, port int, from string, to string, username string, password string) (*MailAuthHook, error)

creates a hook to be added to an instance of logger.

func NewMailHook(appname string, host string, port int, from string, to string) (*MailHook, error)

NewMailHook creates a hook to be added to an instance of logger.

type MessageParamIM struct {
	TalkType   int    `form:"talk_type" json:"talk_type" binding:"required,oneof=1 2" label:"talk_type"`
	ReceiverId int    `form:"receiver_id" json:"receiver_id" binding:"required,numeric,gt=0" label:"receiver_id"`
	Text       string `form:"text" json:"text" binding:"required,max=3000" label:"text"`
	RobotId    int    `form:"robot_id" json:"robot_id" label:"robot_id"`
      
type NewMessageParamIM struct {
	Type string `json:"type"`
	//SenderId int           `json:"sender_id"` // TODO 最好传过来,可以标记是极兔助手还是快码机器人。但是总体来说没啥关系。
	Content  string        `json:"content"`
	QuoteId  string        `json:"quote_id"`
	Mentions []interface{} `json:"mentions"`
	Receiver struct {
		ReceiverId int `json:"receiver_id"`
		TalkType   int `json:"talk_type"`
	} `json:"receiver"`
	RequestTime       time.Time
	Msg               string `json:"msg"`
	TenantAccessToken string `json:"tenant_access_token"`
        
go.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic. Learn more.