We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 19282f7 + e54694a commit 0c3a4caCopy full SHA for 0c3a4ca
core/src/main/java/com/microsoft/applicationinsights/internal/logger/DefaultLogFileProxy.java
@@ -57,6 +57,11 @@ public void delete() {
57
58
public void writeLine(String line) throws IOException {
59
out.write(line + NEW_LINE);
60
+
61
+ //flush every time for real time streaming of logs on file.
62
+ //Please use logger with caution. Using File logger with TRACE level logging
63
+ //can significantly increase the load
64
+ flush();
65
}
66
67
public boolean isFull() {
0 commit comments