public class FileAppender<E> extends OutputStreamAppender<E>
Type | Property and Description |
---|---|
String |
rawFile
This method is used by derived classes to obtain the raw file property.
|
Modifier and Type | Field and Description |
---|---|
protected boolean |
append
Append to or truncate the file? The default value for this variable is
true , meaning that by default a FileAppender will
append to an existing file and not truncate it. |
protected static String |
COLLISION_WITH_EARLIER_APPENDER_URL |
static long |
DEFAULT_BUFFER_SIZE |
protected String |
fileName
The name of the active log file.
|
encoder, lock
name, started
context
Constructor and Description |
---|
FileAppender() |
Modifier and Type | Method and Description |
---|---|
protected void |
addErrorForCollision(String optionName,
String optionValue,
String appenderName) |
protected boolean |
checkForFileCollisionInPreviousFileAppenders() |
String |
getFile()
Returns the value of the File property.
|
boolean |
isAppend()
Returns the value of the Append property.
|
boolean |
isPrudent() |
void |
openFile(String file_name)
Sets and opens the file where the log output will go.
|
String |
rawFileProperty()
This method is used by derived classes to obtain the raw file property.
|
void |
setAppend(boolean append) |
void |
setBufferSize(FileSize bufferSize) |
void |
setFile(String file)
The File property takes a string value which should be the name of
the file to append to.
|
void |
setPrudent(boolean prudent)
When prudent is set to true, file appenders from multiple JVMs can safely
write to the same file.
|
void |
start()
If the value of File is not
null , then
openFile(java.lang.String) is called with the values of File and
Append properties. |
void |
stop()
Stop this appender instance.
|
protected void |
writeOut(E event) |
append, closeOutputStream, getEncoder, getOutputStream, isImmediateFlush, setEncoder, setImmediateFlush, setLayout, setOutputStream, subAppend
addFilter, clearAllFilters, doAppend, getCopyOfAttachedFiltersList, getFilterChainDecision, getName, isStarted, setName, toString
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getDeclaredOrigin, getStatusManager, setContext
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, setContext
public final String rawFileProperty
public static final long DEFAULT_BUFFER_SIZE
protected static String COLLISION_WITH_EARLIER_APPENDER_URL
protected boolean append
true
, meaning that by default a FileAppender
will
append to an existing file and not truncate it.protected String fileName
public void setFile(String file)
public boolean isAppend()
public final String rawFileProperty()
public String getFile()
This method may be overridden by derived classes.
public void start()
null
, then
openFile(java.lang.String)
is called with the values of File and
Append properties.start
in interface LifeCycle
start
in class OutputStreamAppender<E>
public void stop()
OutputStreamAppender
Stopped appenders cannot be reused.
stop
in interface LifeCycle
stop
in class OutputStreamAppender<E>
protected boolean checkForFileCollisionInPreviousFileAppenders()
protected void addErrorForCollision(String optionName, String optionValue, String appenderName)
public void openFile(String file_name) throws IOException
Sets and opens the file where the log output will go. The specified file must be writable.
If there was already an opened file, then the previous file is closed first.
Do not use this method directly. To configure a FileAppender or one of its subclasses, set its properties one by one and then call start().
file_name
- The path to the log file.IOException
public boolean isPrudent()
setPrudent(boolean)
public void setPrudent(boolean prudent)
prudent
- public void setAppend(boolean append)
public void setBufferSize(FileSize bufferSize)
protected void writeOut(E event) throws IOException
writeOut
in class OutputStreamAppender<E>
IOException
Copyright © 2005–2021 QOS.ch. All rights reserved.