-
Enhancement
-
Resolution: Done
-
Major
-
2.0.20.Final
-
None
As the following code, access log implementation always adds newline by LF for Linux.
It is better to add CRLF on Windows to be able to open the access_log in notepad that does not support LF.
for (String message : messages) { writer.write(message); writer.write('\n'); // add LF }
- causes
-
UNDERTOW-1574 Failing access log tests due to different new-line character on Windows
-
- Resolved
-