Java logging
2
Previously I could do 'System.out.println()' and the message would appear on the console. What do I have to do now? It looks a bit like log4j, so do I need a logger in the generated action class?
asked
2010-04-01
Bart Tolen
2
answers
4
Core.getLogNode("MyModule").warn("mymessage"); (or info, error etc...)
answered
2010-04-01
Michel Weststrate
1
ok, thanks.
answered
2010-04-06
Bart Tolen