如何关闭log4c中的日志记录,这是xml文件中使用的配置参数
我正在使用带有 xml 配置 log4crc 的 log4c 库,我需要弄清楚如何关闭/打开日志记录。 我在 log4crc 配置文件中找不到任何解释参数的文档,
I am using log4c library with xml configuration log4crc and I need to figure out how to turn off/on logging.
I could not find any document explaining the parameters in log4crc configuration file,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将日志优先级设置为“notset”
如果这不起作用,请确保系统找不到您的日志配置文件并取消设置环境变量 LOG4C_APPENDER 和 LOG4C_PRIORITY
try seeting the log priority to "notset"
If that doesn't work then make sure the system can't find your log configuration file and unset the environment variables LOG4C_APPENDER and LOG4C_PRIORITY
您无法通过 set_priority() 关闭,因为 log4c
enum
不支持 OFF,如 logjYou could not turn off through set_priority() as log4c
enum
does not have support for OFF, where as avail in logj