package com.yanzuoguang.log;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

/**
 * 整个模块的所有配置信息
 *
 * @author 颜佐光
 */
@Component
public class LogConfig {

    public static final int DEFAULT_PRINT_TIME = 2 * 60 * 1000;
    /**
     * 外网地址
     */
    @Value("${yzg.log.print.time:" + DEFAULT_PRINT_TIME + "}")
    private int logCountTime;

    public int getLogCountTime() {
        return logCountTime;
    }
}