Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ public void delete() {

public void writeLine(String line) throws IOException {
out.write(line + NEW_LINE);

//flush every time for real time streaming of logs on file.
//Please use logger with caution. Using File logger with TRACE level logging
//can significantly increase the load
flush();
}

public boolean isFull() {
Expand Down