Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hello, community,
I would like to capture the time a subscription gets fired. Is there a way to this
Regards.
TB
Solved! Go to Solution.
User any of logger statements... that will logged in Script Log.
logger.info("info message: " + new Date());
logger.warn("warn message: " + new Date());
logger.error("error message: " + new Date());
Or you can create a stream and call stream entry service in subscription.
User any of logger statements... that will logged in Script Log.
logger.info("info message: " + new Date());
logger.warn("warn message: " + new Date());
logger.error("error message: " + new Date());
Or you can create a stream and call stream entry service in subscription.