Need help setting up BIRT registration.
Birt: 2.6.2 Eclipse: 3.6.2 (reporting)
I can register with the eclipse birt designer for the file as instructed here .
But not sure how to redirect logs to standard eclipse console. Tried the following script but did not work:
importPackage(Packages.java.util.logging); var cHandler = new ConsoleHandler(); cHandler.setFormatter(new SimpleFormatter()); var rootLogger = Logger.getLogger(""); logger.addHandler(cHandler); Logger.getAnonymousLogger().info(str);
source share