Merge pull request #527 from martinsefcik/feature/507

Added support for debug level for console logging in scripts
This commit is contained in:
Anoop M D
2023-10-13 05:29:50 +05:30
committed by GitHub

View File

@@ -71,6 +71,7 @@ class ScriptRuntime {
};
context.console = {
log: customLogger('log'),
debug: customLogger('debug'),
info: customLogger('info'),
warn: customLogger('warn'),
error: customLogger('error')