无法将DropWizard日志时区设置为与主机相同

时间:2017-10-27 10:59:28

标签: dropwizard

我在DropWizard项目上有以下日志记录配置:

logging:
  level: INFO
  appenders:
    - type: console
      threshold: INFO
      target: stdout

默认情况下,UTC时区会查看生成日志中的时间。运行此应用程序的主机位于WET中,如果我将日志配置更改为:

logging:
  level: INFO
  appenders:
    - type: console
      threshold: INFO
      target: stdout
      timeZone: WET

然后日志消息与主机具有相同的时间。

是否有一种机制可以让DW自动将时区设置为与主机相同,或者我们是否需要指定生成日志消息的确切时区?

1 个答案:

答案 0 :(得分:1)

您似乎可以set the appender's timezone to the timezone of the host使用:

timeZone: system