Hello,
By default logging with log4j adds a new-line as in
'System.out.println(String)'.
For example,
logger.error( "Have a wonderful day.");
logger.error( "Have a wonderful day.");
results in :
Have a wonderful day.
Have a wonderful day.
but how is it possible to log without the new-line as in
'System.out.print(String)'.
Meaning, that the result shell be:
Have a wonderful day.Have a wonderful day.
thank you,
Rami A.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>