登录
首页 >  Golang >  Go问答

如何禁用 log.Logger

来源:Golang技术栈

时间:2023-04-06 16:55:46 414浏览 收藏

你在学习Golang相关的知识吗?本文《如何禁用 log.Logger》,主要介绍的内容就涉及到golang,如果你想提升自己的开发能力,就不要错过这篇文章,大家要知道编程理论基础和实战操作都是不可或缺的哦!

问题内容

我有一些使用该log包的大量检测代码。现在是时候关闭日志记录了,我无法确定如何关闭标准记录器。

我错过了什么吗?我应该在进行日志调用之前检查标志,还是在生产中将它们注释掉?

正确答案

对于完全禁用日志,实际上最好调用log.SetFlags(0)[Joril](https://stackoverflow.com/questions/10571182/go- disable-a-log- logger#comment43485550_10688098)并将输出设置为无操作io.Writer(即,log.SetOutput(ioutil.Discard)

但即使在此之后,操作也会在[500-600 ns/op ](https://gist.github.com/Avinash- Bhat/48c4f06b0cc840d9fd6c#file-log_test-go "YMMV,在 i7-4500U CPU @ 1.80GHz 上测试")1左右空闲

这仍然可以通过使用自定义实现来缩短(到大约 100 ns/opLogger ) ,并将所有功能实现为无操作 - 如此处所示[(](https://gist.github.com/Avinash-Bhat/48c4f06b0cc840d9fd6c#file- log_test-go "包日志的基准")仅为Printlnbervity 覆盖)。

所有这些的替代方法是使用具有级别的自定义日志框架并将其设置为完全关闭。

但请注意,常用的日志记录库之一(logrus)具有性能影响——无论如何,在它使用 3K+ ns/op 执行的[基准测试](https://gist.github.com/Avinash- Bhat/48c4f06b0cc840d9fd6c "要旨")中可以找到相同的情况。 __

有偏见的意见:从基准测试来看 ,无论后端和格式如何,库[go-logging](https://github.com/op/go- logging)在设置toLogger时的性能与自定义实现相当Level``-1

(基准源可以在这里找到)

基准的输出如下:

testing: warning: no tests to run
PASS
BenchmarkGoLogging-4                                             1000000          2068 ns/op
BenchmarkGoLoggingNullBackend-4                                  5000000           308 ns/op
BenchmarkGoLoggingNullBackendWithFancyFormatter-4                3000000           435 ns/op
BenchmarkGoLoggingOffLevel-4                                    20000000           109 ns/op
BenchmarkGoLoggingNullBackendAndOffLevel-4                      20000000           108 ns/op
BenchmarkGoLoggingNullBackendWithFancyFormatterAndOffLevel-4    20000000           109 ns/op
BenchmarkLog15-4                                                  200000          7359 ns/op
BenchmarkLog15WithDiscardHandler-4                               2000000           922 ns/op
BenchmarkLog15WithDiscardHandlerAndOffLevel-4                    2000000           926 ns/op
BenchmarkLog15WithNopLogger-4                                   20000000           108 ns/op
BenchmarkLog15WithNopLoggerDiscardHandlerA-4                    20000000           112 ns/op
BenchmarkLog15WithNopLoggerAndDiscardHandlerAndOffLevel-4       20000000           112 ns/op
BenchmarkLog-4                                                   1000000          1217 ns/op
BenchmarkLogIoDiscardWriter-4                                    2000000           724 ns/op
BenchmarkLogIoDiscardWriterWithoutFlags-4                        3000000           543 ns/op
BenchmarkLogCustomNullWriter-4                                   2000000           731 ns/op
BenchmarkLogCustomNullWriterWithoutFlags-4                       3000000           549 ns/op
BenchmarkNopLogger-4                                            20000000           113 ns/op
BenchmarkNopLoggerWithoutFlags-4                                20000000           112 ns/op
BenchmarkLogrus-4                                                 300000          3832 ns/op
BenchmarkLogrusWithDiscardWriter-4                                500000          3032 ns/op
BenchmarkLogrusWithNullFormatter-4                                500000          3814 ns/op
BenchmarkLogrusWithPanicLevel-4                                   500000          3872 ns/op
BenchmarkLogrusWithDiscardWriterAndPanicLevel-4                   500000          3085 ns/op
BenchmarkLogrusWithDiscardWriterAndNullFormatterAndPanicLevel-4   500000          3064 ns/op
ok      log-benchmarks  51.378s
go test -bench .  62.17s user 3.90s system 126% cpu 52.065 total

#1: YMMV ,在 i7-4500U CPU @ 1.80GHz 上测试

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表