All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.slf4j.impl.SimpleLoggerItem Maven / Gradle / Ivy

package org.slf4j.impl;

import java.util.ArrayList;

/**
 * Logger item
 *
 * @author biezhi
 * @date 2018/3/28
 */
public class SimpleLoggerItem {

    String                  logFileName   = "";
    String                  logPath       = "";
    String                  lastWriteDate = "";
    long                    size          = 0;
    long                    nextWriteTime = 0;
    long                    cacheSize     = 0;
    char                    currLogBuff   = 'A';
    ArrayList alLogBufA     = new ArrayList<>();
    ArrayList alLogBufB     = new ArrayList<>();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy