mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
14 lines
181 B
Go
14 lines
181 B
Go
package main
|
|
|
|
import (
|
|
"gitee.com/johng/gf/g/os/glog"
|
|
)
|
|
|
|
func main() {
|
|
glog.SetPath("/tmp/")
|
|
glog.Cat("test1").Cat("test2").Println("test")
|
|
glog.Println("test")
|
|
}
|
|
|
|
|