class documentation

The base class for a log file that can be rotated.

Class Method fromFullPath Construct a log file from a full file path.
Method __init__ Create a log file.
Method close Close the file.
Method flush Flush the file.
Method getCurrentLog Return a LogReader for the current log file.
Method reopen Reopen the log file. This is mainly useful if you use an external log rotation tool, which moves under your feet.
Method shouldRotate Override with a method to that returns true if the log should be rotated.
Method write Write some data to the file.
Class Variable synchronized Undocumented
Instance Variable closed Undocumented
Instance Variable defaultMode Undocumented
Instance Variable directory Undocumented
Instance Variable name Undocumented
Instance Variable path Undocumented
Method _openFile Open the log file.
Instance Variable _file Undocumented
@classmethod
def fromFullPath(cls, filename, *args, **kwargs): (source)

Construct a log file from a full file path.

def __init__(self, name: str, directory: str, defaultMode: Optional[int] = None): (source)

Create a log file.

Parameters
name:strname of the file
directory:strdirectory holding the file
defaultMode:Optional[int]permissions used to create the file. Default to current permissions of the file if the file exists.
def close(self): (source)

Close the file.

The file cannot be used once it has been closed.

def flush(self): (source)

Flush the file.

def getCurrentLog(self): (source)

Return a LogReader for the current log file.

def reopen(self): (source)

Reopen the log file. This is mainly useful if you use an external log rotation tool, which moves under your feet.

Note that on Windows you probably need a specific API to rename the file, as it's not supported to simply use os.rename, for example.

def shouldRotate(self): (source)

Override with a method to that returns true if the log should be rotated.

def write(self, data): (source)

Write some data to the file.

Parameters
data:bytes or unicodeThe data to write. Text will be encoded as UTF-8.
synchronized: list[str] = (source)

Undocumented

Undocumented

defaultMode: Optional[int] = (source)

Undocumented

directory = (source)

Undocumented

Undocumented

Undocumented

def _openFile(self): (source)

Open the log file.

The log file is always opened in binary mode.

Undocumented