package com.yanzuoguang.util.extend;

import com.yanzuoguang.util.log.RunnableLog;

/**
 * 配置参数
 */
public class ConfigBase {

    /**
     * 打印线程相关参数
     */
    public static final boolean PrintThread = false;

    /**
     * 内存缓存自动清除时间
     */
    public static final int MemoryClearTimeout = 5 * 1000;

    /**
     * 写入日志对象
     */
    public static RunnableLog WriteLog;
}