Log4net - 在控制台中显示时间(而不是日期)
我正在使用 log4net 登录到控制台,并且 %date conversionPattern 值太详细。 我只想查看 hh:mm:ss - 不需要日期,因为我知道今天是什么日期。
当前配置:
[conversionPattern value="%date %-5level - %message%newline" /]
I am using log4net to log to the console, and the %date conversionPattern value is too verbose.
I would like to see just hh:mm:ss - the date is not required cos I know what the date is today.
Current config:
[conversionPattern value="%date %-5level - %message%newline" /]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
date
或utcdate
根据您的规范设置日期格式:来源:log4net PatternLayout 文档 。
You can use
date
orutcdate
to format a date to your specification:Source: log4net PatternLayout documentation.