Dropwizard自定义记录器不会将日志转储到文件中

时间:2016-03-23 16:57:24

标签: java logging dropwizard

我需要为我的应用程序设置maxfile大小,但目前我使用的是Dropwizard核心版本0.8.4,其文件appender不支持此功能。

所以我通过编写自定义appender来更新到最新的dropwizard(支持我的需要)版本,而不是现在的选项。

   private void initLogging(Configuration configuration) throws JoranException {
    final File logDir = new File("/tmp/enforcer");
    final File logFile = new File(logDir, "wallet.log");

    final LoggerContext loggerContext = (LoggerContext) LoggerFactory.getILoggerFactory();
    RollingFileAppender<ILoggingEvent> rollingFileAppender = new RollingFileAppender<ILoggingEvent>();
    rollingFileAppender.setFile(logFile.getAbsolutePath());
    rollingFileAppender.setName("com.documents4j.logger.server.file");
    rollingFileAppender.setContext(loggerContext);

    FixedWindowRollingPolicy fixedWindowRollingPolicy = new FixedWindowRollingPolicy();
    fixedWindowRollingPolicy.setFileNamePattern(logFile.getAbsolutePath() +"%i.gz");
    fixedWindowRollingPolicy.setMaxIndex(7);
    fixedWindowRollingPolicy.setContext(loggerContext);
    fixedWindowRollingPolicy.setParent(rollingFileAppender);
    fixedWindowRollingPolicy.start();

    SizeBasedTriggeringPolicy<ILoggingEvent> sizeBasedTriggeringPolicy = new SizeBasedTriggeringPolicy<ILoggingEvent>();
    sizeBasedTriggeringPolicy.setMaxFileSize("2KB");
    sizeBasedTriggeringPolicy.setContext(loggerContext);
    sizeBasedTriggeringPolicy.start();



    rollingFileAppender.setRollingPolicy(fixedWindowRollingPolicy);
    rollingFileAppender.setTriggeringPolicy(sizeBasedTriggeringPolicy);

    rollingFileAppender.start();

    System.out.println("Logging: The log is written to " + logFile);
    final ch.qos.logback.classic.Logger log = loggerContext.getLogger(Logger.ROOT_LOGGER_NAME);
    log.setLevel(Level.DEBUG);
    log.addAppender(rollingFileAppender);
}


 @Override
public void run(Configuration configuration, Environment environment) throws Exception
{

   initLogging(configuration);
}

我的yaml文件配置是

logging:
  level: INFO
  org.springframework.retry.support.RetryTemplate: DEBUG
  appenders:
  - type: file
  currentLogFilename: /tmp/enforcer.log
  threshold: ALL
  archive: true
  archivedLogFilenamePattern: /tmp/enforcer-%d.log
  archivedFileCount: 5
  timeZone: UTC
  logFormat: '%-5level [%date{yyyy-MM-dd HH:mm:ss,SSS}] [%X{realdocRequestId}] %logger{15}: %m%n'

现在,当我运行我的应用程序时,我注意到,即使在特定目录中创建了自定义日志文件(/tmp/enforcer/wallet.log),但实际日志未被转储,即wallet.log文件大小为0 kb,其中as创建yaml中配置的日志文件,大小为某个kb,并在生成日志事件时继续增加。

我无法弄清楚我在做什么是错的,帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

您的记录器没有记录任何内容,因为您从未为其设置过编码器。在:

中设置断点

OutputStreamAppender #start(),您将看到没有编码器。

添加后它会起作用:

        LayoutWrappingEncoder<ILoggingEvent> layoutEncoder = new LayoutWrappingEncoder<>();
        DropwizardLayout formatter = new DropwizardLayout(loggerContext, TimeZone.getDefault());
        formatter.setPattern("[%level] [%h] %d{yyyy-MM-dd'T'HH:mm:ss.SSS'Z', UTC} [%thread] [%logger] %msg%n");
        layoutEncoder.setLayout(formatter);
        formatter.start();
        rollingFileAppender.setEncoder(layoutEncoder);

当然,您可以定义您喜欢的格式(和格式化程序)。

但请记住,这是你尝试实现的一个相当黑客的例子。您现在在配置日志记录的代码中有2个点(DW和您自己的)。您有yaml配置的日志记录以及您自己的日志记录。我建议投入一些工作并添加一个可以使用的适当的AppenderFactory。

希望有所帮助,

阿图尔