Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在选择PatternLayout我是否使用%d{%m/%d/%y %H:%M:%S}时,它将显示当前日期和时间。时间以UTC格式为准。
PatternLayout
%d{%m/%d/%y %H:%M:%S}
UTC
我的要求是根据本地系统时间显示时间。
更新:
有timehelper.h一种方法Time::localtime会根据本地系统时间显示时间吗?
timehelper.h
Time::localtime
请参阅PatternLayout 类文档。详细描述有一个列举所有格式的表格。在那里,您应该能够看到 UTC 由 打印%d,本地时间由 打印%D。
%d
%D
只需将首字母更改%d为%D.