Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
Is there a mechanism during workflow scripting where I can use the log level to control when they show?
I currently use System.out.println statements to get messages written in the logs while debugging new workflow behavior, and then rip it out when it's done and ready for production release. I would rather leave it in and turn it on or off with log levels. What's the mechanism I should use?
Solved! Go to Solution.
Hi @RFS
You can use log4j logging
org.apache.logging.log4j.Logger logger = wt.log4j.LogR.getLogger("com.ext.MyApplication");
logger.debug("error message");
logger.info("error message");
logger.trace("error message");
logger.error("error message");
PetrH
Hi @RFS
You can use log4j logging
org.apache.logging.log4j.Logger logger = wt.log4j.LogR.getLogger("com.ext.MyApplication");
logger.debug("error message");
logger.info("error message");
logger.trace("error message");
logger.error("error message");
PetrH