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
2 answers
4

Core.getLogNode("MyModule").warn("mymessage"); (or info, error etc...)

answered
1

ok, thanks.

answered