在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函數將日志輸出到其他地方。