第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

將 Golang 日志輸出設(shè)置為文件不會(huì)在函數(shù)聲明之外持續(xù)存在

將 Golang 日志輸出設(shè)置為文件不會(huì)在函數(shù)聲明之外持續(xù)存在

Go
慕雪6442864 2023-06-01 14:27:16
我有以下代碼:func main() {    initSetLogOutput()    log.Println("Another log")}func initSetLogOutput() {    f, err := os.OpenFile("errors.log", os.O_RDWR | os.O_CREATE | os.O_APPEND, 0666)    if err != nil {        log.Fatalf("error opening file: %v", err)    }    defer f.Close()    log.SetOutput(f)    log.Println("This is a test log entry")}編譯后,我運(yùn)行應(yīng)用程序并獲得第一個(gè)日志This is a test log entry,但第二個(gè)日志未寫入日志文件。是什么原因造成的?的聲明是否log.SetOutput僅限于函數(shù)的范圍?如何讓日志輸出選項(xiàng)在整個(gè)應(yīng)用程序中持續(xù)存在?我的輸出日志如下所示:2019/01/10 15:53:36 This is a test log entry2019/01/10 15:54:27 This is a test log entry2019/01/10 15:55:43 This is a test log entry2019/01/10 15:57:40 This is a test log entry2019/01/10 16:02:27 This is a test log entry
查看完整描述

1 回答

?
慕斯709654

TA貢獻(xiàn)1840條經(jīng)驗(yàn) 獲得超5個(gè)贊

里面initSetLogOutput()有一行defer f.Close(),這意味著在initSetLogOutput()返回之前,文件將被關(guān)閉。


而是在 的末尾關(guān)閉它main(),如下所示:


func main() {

    initSetLogOutput()

    log.Println("Another log")

    closeLogOutput()

}


var logFile *os.File


func initSetLogOutput() {

    var err error

    logFile, err = os.OpenFile("errors.log", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)

    if err != nil {

        log.Fatalf("error opening file: %v", err)

    }


    log.SetOutput(logFile)

    log.Println("This is a test log entry")

}


func closeLogOutput() {

    logFile.Close()

}


查看完整回答
反對(duì) 回復(fù) 2023-06-01
  • 1 回答
  • 0 關(guān)注
  • 163 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)