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
commit 774ce327a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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')