Is there any way to fix such behaviour?
Examples:
In the log files everything is okay, but in the tool that shows the logfiles some lines are like this:
Is there any way to fix such behaviour?
Examples:
In the log files everything is okay, but in the tool that shows the logfiles some lines are like this:
Log4j
is designed to write what you give to it... no println
function.
So you must add it to your log message + "\n"
or create a FileAppender
that adds new line in each log entry.