How can I show message at console panel in 2.5 RC1,RC2

2
How can I show message at console panel by java action similar to 2.4.x use System.out.println(); command Thank you
asked
2 answers
3

The Core has a method

public static ILogNode getLogger(String name)

that you can call with any name, which will become the name of the logger. For instance:

Core.getLogger("Somrak").info("hello!");
answered
0

Thank you.

answered