在Golang中,可以使用log标准库来进行日志记录。下面是使用log标准库的一些常见操作:
import "log"
log.Println("This is a log message")
log.Printf("This is a log message with a formatted string: %s", "Hello World")
log.SetPrefix("LOG: ")
log.Println("This is a log message with prefix")
log.SetFlags(log.Ldate | log.Ltime)
log.Println("This is a log message with timestamp")
file, err := os.OpenFile("logfile.log", os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
if err != nil {
log.Fatal(err)
}
defer file.Close()
log.SetOutput(file)
log.Println("This is a log message that will be written to the file")
以上是使用log标准库的一些基本操作,你可以根据实际需求来使用更多的log库函数。请注意,log标准库默认输出到标准错误流,可以使用log.SetOutput函数将日志输出到其他地方。