Script Playground to Output Logger Statements

It would be really nice if the Script Playground printed logger statements in the “Output” area.

For example, run the code below in the Script Playground and print “INFO [MyLogger] neat” to the Output area.

logger = system.util.getLogger("MyLogger")
logger.info("test")