Add ability to create log entries from scripts
Allow simple logging from scripts.
log.info("Info level message")
log.debug("Hi this is from a user script")
log.trace("trace level message")
try {
// actions that causes exception
} catch (ex) {
log.error("Error from user script", ex);
}
Edited by 🤖 GitLab Bot 🤖