英文:
Why should I use log.Println instead of fmt.Println?
问题
从log.go(log包的实现)中可以看到:
167 // Println调用l.Output来打印日志。
168 // 参数的处理方式与fmt.Println相同。
169 func (l *Logger) Println(v ...interface{}) { l.Output(2, fmt.Sprintln(v...)) }
log.Println
只是对fmt.Sprintln
的一个函数包装,为什么我应该使用它而不是fmt.Println
或fmt.Sprintln
?
有什么实际的原因吗?
英文:
From log.go (the implementation of the log package) :
167 // Println calls l.Output to print to the logger.
168 // Arguments are handled in the manner of fmt.Println.
169 func (l *Logger) Println(v ...interface{}) { l.Output(2, fmt.Sprintln(v...)) }
log.Println
is just a function wrapper for fmt.Sprintln
, why should I use it instead of fmt.Println
or fmt.Sprintln
?
Any practical reasons ?
答案1
得分: 180
两件事情是不同的:
-
通过log包打印是安全的,可以在并发的goroutine中使用(而普通的
fmt
不行)。 -
log可以自动添加时间信息。
所以这是两个完全不同的东西。log用于记录日志,fmt
用于格式化输出。(好吧,log使用相同的动词和标志,但这只是方便之处)。
英文:
Two things are different:
-
Printing via package log is safe from concurrent goroutines (while plain
fmt
isn't) -
Log can add timing information automatically.
So these are two completely different things. log is for logging and fmt
for formatting. (Okay, log uses the same verbs and flags, but that is just convenient).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论