-
public abstract class FileLogHandlerConfiguration extends Handler
-
-
Method Summary
Modifier and Type Method Description abstract FileLogHandlerConfigurationsetFullFilePathPattern(String fullPathPattern)abstract FileLogHandlerConfigurationsetRotateFilesCountLimit(int count)abstract FileLogHandlerConfigurationsetLogFileSizeLimitInBytes(int maxFileSizeInBytes)abstract StringgetCurrentFileName()static FileLogHandlerConfigurationcreate(Context context)Creates a FileLogHandlerConfiguration logger handler. -
Methods inherited from class java.util.logging.Handler
close, flush, getEncoding, getErrorManager, getFilter, getFormatter, getLevel, isLoggable, publish, setEncoding, setErrorManager, setFilter, setFormatter, setLevel -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
setFullFilePathPattern
abstract FileLogHandlerConfiguration setFullFilePathPattern(String fullPathPattern)
-
setRotateFilesCountLimit
abstract FileLogHandlerConfiguration setRotateFilesCountLimit(int count)
-
setLogFileSizeLimitInBytes
abstract FileLogHandlerConfiguration setLogFileSizeLimitInBytes(int maxFileSizeInBytes)
-
getCurrentFileName
abstract String getCurrentFileName()
-
create
static FileLogHandlerConfiguration create(Context context)
Creates a FileLogHandlerConfiguration logger handler.The returned new instance should be added to some logger with addHandlerToLogger
-
-
-
-