Hi,
I have Strings that I print to an html log using log4j.
I am trying to get line breaks but the <br> is not interpreted properly.
I add line breaks to the end of the Strings like so:
"String1 <br> String2"
But the end result is not right:
"String1 <br> String2"
The line break is not happening. The <br> is printed out in the result.
How do I get proper line breaks in?
I tries using < but still no good.
Any ideas?