Here is my code-
Logger log = Logger.getLogger("myApp");
log.info("hola");
it displays output as-
Mar 16, 2012 8:58:39 PM *packageName* main
INFO: hola
I don't want it to create a newline before "INFO" ... how do I tell logger to do it? I want my output to be like this-
Mar 16, 2012 8:58:39 PM *packageName* main INFO: hola
Much like syslog format.