com.castle.util.logging.LogFileConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of castle Show documentation
Show all versions of castle Show documentation
A generic utility library
package com.castle.util.logging;
import com.castle.annotations.Immutable;
@Immutable
public class LogFileConfig {
private final int mSizeLimitBytes;
private final int mFileCount;
public LogFileConfig(int sizeLimitBytes, int fileCount) {
mSizeLimitBytes = sizeLimitBytes;
mFileCount = fileCount;
}
public int getSizeLimitBytes() {
return mSizeLimitBytes;
}
public int getFileCount() {
return mFileCount;
}
}