Categories: GoFrame 教程

GoFrame 日志组件-链式操作

完整的方法列表可参考接口文档:https://pkg.go.dev/github.com/gogf/gf/v2/os/glog

glog​模块支持非常简便的链式操作方式,主要的链式操作方法如下:

// 重定向日志输出接口
func To(writer io.Writer) *Logger
// 日志内容输出到目录
func Path(path string) *Logger
// 设置日志文件分类
func Cat(category string) *Logger
// 设置日志文件格式
func File(file string) *Logger
// 设置日志打印级别
func Level(level int) *Logger
// 设置日志打印级别(字符串)
func LevelStr(levelStr string) *Logger
// 设置文件回溯值
func Skip(skip int) *Logger
// 是否开启trace打印
func Stack(enabled bool) *Logger
// 开启trace打印并设定过滤trace的字符串
func StackWithFilter(filter string) *Logger
// 是否开启终端输出
func Stdout(enabled...bool) *Logger
// 是否输出日志头信息
func Header(enabled...bool) *Logger
// 输出日志调用行号信息
func Line(long...bool) *Logger
// 异步输出日志
func Async(enabled...bool) *Logger

示例1, 基本使用

package main

import (
 "context"

 "github.com/gogf/gf/v2/frame/g"
 "github.com/gogf/gf/v2/os/gfile"
)

func main() {
 ctx := context.TODO()
 path := "/tmp/glog-cat"
 g.Log().SetPath(path)
 g.Log().Stdout(false).Cat("cat1").Cat("cat2").Print(ctx, "test")
 list, err := gfile.ScanDir(path, "*", true)
 g.Dump(err)
 g.Dump(list)
}

执行后,输出结果为:

null
[
 "/tmp/glog-cat/cat1",
 "/tmp/glog-cat/cat1/cat2",
 "/tmp/glog-cat/cat1/cat2/2018-10-10.log",
]

示例2, 打印调用行号

package main

import (
 "context"

 "github.com/gogf/gf/v2/frame/g"
)

func main() {
 ctx := context.TODO()
 g.Log().Line().Print(ctx, "this is the short file name with its line number")
 g.Log().Line(true).Print(ctx, "lone file name with line number")
}

执行后,终端输出结果为:

2019-05-23 09:22:58.141 glog_line.go:8: this is the short file name with its line number
2019-05-23 09:22:58.142 /Users/john/Workspace/Go/GOPATH/src/github.com/gogf/gf/.example/os/glog/glog_line.go:9: lone file name with line number

示例3, 文件回溯Skip

有时我们通过一些模块封装了​glog​模块来打印日志,例如封装了一个​logger​包通过​logger.Print​来打印日志,这个时候打印出来的调用文件行号总是同一个位置,因为对于​glog​来讲,它的调用方即总是​logger.Print​方法。这个时候,我们可以通过设置回溯值来跳过回溯的文件数,使用​SetStackSkip​或者链式方法​Skip​实现。

文件回溯值的设置同样也会影响​Stack​调用回溯打印结果。

package main

import (
 "context"

 "github.com/gogf/gf/v2/frame/g"
)

func PrintLog(ctx context.Context, content string) {
 g.Log().Skip(1).Line().Print(ctx, "line number with skip:", content)
 g.Log().Line().Print(ctx, "line number without skip:", content)
}

func main() {
 ctx := context.TODO()
 PrintLog(ctx, "just test")
}

执行后,终端输出结果为:

2019-05-23 19:30:10.984 glog_line2.go:13: line number with skip: just test
2019-05-23 19:30:10.984 glog_line2.go:9: line number without skip: just test

andy

前端小白,在Web176教程网这个平台跟大家一起学习,加油!

Share
Published by
andy

Recent Posts

聊聊vue3中的defineProps

在Vue 3中,defineP…

1 周 ago

在 Chrome 中删除、允许和管理 Cookie

您可以选择删除现有 Cooki…

2 周 ago

自定义指令:聊聊vue中的自定义指令应用法则

今天我们来聊聊vue中的自定义…

3 周 ago

聊聊Vue中@click.stop和@click.prevent

一起来学下聊聊Vue中@cli…

4 周 ago

Nginx 基本操作:启动、停止、重启命令。

我们来学习Nginx基础操作:…

1 月 ago

Vue3:手动清理keep-alive组件缓存的方法

Vue3中手动清理keep-a…

1 月 ago