Logging
Overview
Customizing logs
# modules/task_with_logging.py
import prism_project
from prism_project import PRISM_LOGGER
import prism.task
class TaskWithLogging(prism.task.PrismTask):
def run(self, tasks, hooks):
PRISM_LOGGER.info("This is an example log message!")
return ...Last updated