Skip to main content
13-Aquamarine
August 28, 2023
Solved

Debug logging during workflow script

  • August 28, 2023
  • 1 reply
  • 1330 views

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?

Best answer by HelesicPetr

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

1 reply

HelesicPetr
22-Sapphire II
22-Sapphire II
August 29, 2023

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