網(wǎng)站首頁(yè) 編程語(yǔ)言 正文
打印
在使用go寫一些小程序時(shí),我們沒(méi)必要引入額外的包,直接使用fmt標(biāo)準(zhǔn)包打印即可:
import "fmt" func main() { fmt.Println("line1") fmt.Print("line2") fmt.Printf("line%d \n", 3) str1 := fmt.Sprintln("hello", 3) str2 := fmt.Sprint("hello ", 1, " 2") str3 := fmt.Sprintf("hello %d", 1) fmt.Print(str1, str2, str3) }
line1
line2line3?
hello 3
hello 1 2hello 1
那么,有些場(chǎng)景下,我們希望能同時(shí)打印到日志文件中要怎么辦呢?
log包
標(biāo)準(zhǔn)庫(kù)提供了log組件,用法和fmt一致,有3種方式:
import “l(fā)og" func main() { log.Println("line1") log.Print("line2") log.Printf("line%d \n", 3) }
和fmt的區(qū)別就是多了時(shí)間:
2021/08/25 17:23:47 line1
2021/08/25 17:23:47 line2
2021/08/25 17:23:47 line3?
我們通過(guò)SetFlag函數(shù),可以設(shè)置打印的格式:
// For example, flags Ldate | Ltime (or LstdFlags) produce, // 2009/01/23 01:23:23 message // while flags Ldate | Ltime | Lmicroseconds | Llongfile produce, // 2009/01/23 01:23:23.123123 /a/b/c/d.go:23: message const ( Ldate = 1 << iota // the date in the local time zone: 2009/01/23 Ltime // the time in the local time zone: 01:23:23 Lmicroseconds // microsecond resolution: 01:23:23.123123. assumes Ltime. Llongfile // full file name and line number: /a/b/c/d.go:23 Lshortfile // final file name element and line number: d.go:23. overrides Llongfile LUTC // if Ldate or Ltime is set, use UTC rather than the local time zone Lmsgprefix // move the "prefix" from the beginning of the line to before the message LstdFlags = Ldate | Ltime // initial values for the standard logger )
比如,我們只需要時(shí)間和文件名:
import “l(fā)og" func main() { log.SetFlags(log.Ldate | log.Ltime | log.Lshortfile) log.Println("line1") log.Print("line2") log.Printf("line%d \n", 3) }
此時(shí),再次運(yùn)行,則會(huì)打印文件和行號(hào):
2021/08/25 17:27:56 mod_unread_redis.go:32: line1
2021/08/25 17:27:56 mod_unread_redis.go:33: line2
2021/08/25 17:27:56 mod_unread_redis.go:34: line3
如何輸出日志到文件?
log包使用非常簡(jiǎn)單,默認(rèn)情況下,只會(huì)輸出到控制臺(tái)。
我們可以使用SetOutput改變輸出流,比如輸出到文件。
先來(lái)看一下函數(shù)原型,其接收一個(gè)io.Writer接口:
// SetOutput sets the output destination for the standard logger. func SetOutput(w io.Writer) { // ... }
那么,我們就可以創(chuàng)建一個(gè)文件流設(shè)置一下就行了。
// 創(chuàng)建、追加、讀寫,777,所有權(quán)限 f, err := os.OpenFile("log.log", os.O_CREATE|os.O_APPEND|os.O_RDWR, os.ModePerm) if err != nil { return } defer func() { f.Close() }() log.SetOutput(f)
此時(shí),在運(yùn)行,我們發(fā)現(xiàn)日志會(huì)輸出到文件,但是控制臺(tái)沒(méi)有任何東西輸出了。
如何同時(shí)輸出到控制臺(tái)和文件?
標(biāo)準(zhǔn)庫(kù)io包中,有一個(gè)MultiWriter,可以把文件流和控制臺(tái)標(biāo)準(zhǔn)輸出流整合到一個(gè)io.Writer上,其實(shí)現(xiàn)上就是一個(gè)數(shù)組,在執(zhí)行寫操作時(shí),遍歷數(shù)組:
// MultiWriter creates a writer that duplicates its writes to all the // provided writers, similar to the Unix tee(1) command. // // Each write is written to each listed writer, one at a time. // If a listed writer returns an error, that overall write operation // stops and returns the error; it does not continue down the list. func MultiWriter(writers ...Writer) Writer { allWriters := make([]Writer, 0, len(writers)) for _, w := range writers { if mw, ok := w.(*multiWriter); ok { allWriters = append(allWriters, mw.writers...) } else { allWriters = append(allWriters, w) } } return &multiWriter{allWriters} } // 重寫io.Writer的Write函數(shù)函數(shù),本質(zhì)上就是遍歷數(shù)組,比較巧妙 func (t *multiWriter) Write(p []byte) (n int, err error) { for _, w := range t.writers { n, err = w.Write(p) if err != nil { return } if n != len(p) { err = ErrShortWrite return } } return len(p), nil }
使用方式如下:
func main() { f, err := os.OpenFile("log.log", os.O_CREATE|os.O_APPEND|os.O_RDWR, os.ModePerm) if err != nil { return } defer func() { f.Close() }() // 組合一下即可,os.Stdout代表標(biāo)準(zhǔn)輸出流 multiWriter := io.MultiWriter(os.Stdout, f) log.SetOutput(multiWriter) log.SetFlags(log.Ldate | log.Ltime | log.Lshortfile) log.Println("line1") log.Print("line2") log.Printf("line%d \n", 3) }
此時(shí),再運(yùn)行,則會(huì)同時(shí)輸出到控制臺(tái)和文件中。
2021/08/25 17:38:02 mod_unread_redis.go:42: line1
2021/08/25 17:38:02 mod_unread_redis.go:43: line2
2021/08/25 17:38:02 mod_unread_redis.go:44: line3?
附:日志切割(按文件大小切割、按日期切割)
其實(shí)就是每次記錄文件的大小,超過(guò)了就重新寫一個(gè)文件。
通過(guò)Stat()函數(shù)拿到文件的一些信息
open, _:= os.Open("文件名") stat, _, := open.Stat() stat.Size()//拿到文件大小
日期切割:
拿到文件的名稱或者檢查下有沒(méi)有當(dāng)天的日志文件,沒(méi)有就創(chuàng)建新增。
總結(jié)
原文鏈接:https://blog.csdn.net/xmcy001122/article/details/119916227
相關(guān)推薦
- 2022-04-07 你知道怎么在?HTML?頁(yè)面中使用?React嗎_React
- 2022-12-24 python的open函數(shù)常見(jiàn)用法_python
- 2023-01-21 Python中的二維列表使用及說(shuō)明_python
- 2022-04-20 appium中常見(jiàn)的幾種點(diǎn)擊方式_python
- 2023-01-11 C++入門教程之引用與指針_C 語(yǔ)言
- 2022-11-19 C#字符串與正則表達(dá)式的圖文詳解_C#教程
- 2022-08-03 在C++中把字符串轉(zhuǎn)換為整數(shù)的兩種簡(jiǎn)單方法_C 語(yǔ)言
- 2022-09-20 關(guān)于go-zero單體服務(wù)使用泛型簡(jiǎn)化注冊(cè)Handler路由的問(wèn)題_Golang
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細(xì)win安裝深度學(xué)習(xí)環(huán)境2025年最新版(
- Linux 中運(yùn)行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲(chǔ)小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎(chǔ)操作-- 運(yùn)算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認(rèn)證信息的處理
- Spring Security之認(rèn)證過(guò)濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權(quán)
- redisson分布式鎖中waittime的設(shè)
- maven:解決release錯(cuò)誤:Artif
- restTemplate使用總結(jié)
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實(shí)現(xiàn)加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務(wù)發(fā)現(xiàn)-Nac
- Spring Security之基于HttpR
- Redis 底層數(shù)據(jù)結(jié)構(gòu)-簡(jiǎn)單動(dòng)態(tài)字符串(SD
- arthas操作spring被代理目標(biāo)對(duì)象命令
- Spring中的單例模式應(yīng)用詳解
- 聊聊消息隊(duì)列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠(yuǎn)程分支