I can see in the TPL documentation that there are some functions for writing to a log during the execution of a pattern.
Log FunctionsThe following functions are for logging. Each takes a single positional argument:
Log the given message with the specified logging level. The log messages that are output automatically include the name of the pattern performing the log action.log.debug(string)
log.info(string)
log.warn(string)
log.error(string)
log.critical(string)
How do I view these log messages?
