mirror of
https://gitee.com/johng/gf
synced 2026-06-27 01:43:33 +08:00
18 lines
298 B
Go
18 lines
298 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/frame/g"
|
|
"github.com/gogf/gf/os/gfile"
|
|
"github.com/gogf/gf/os/glog"
|
|
)
|
|
|
|
// 设置日志输出路径
|
|
func main() {
|
|
path := "/tmp/glog"
|
|
glog.SetPath(path)
|
|
glog.Println("日志内容")
|
|
list, err := gfile.ScanDir(path, "*")
|
|
g.Dump(err)
|
|
g.Dump(list)
|
|
}
|