feat(#507): added support for debug level for console logging in scripts

This commit is contained in:
Martin Sefcik 2023-10-10 12:24:28 +02:00
parent ff3321d643
commit f9f3b3ebc0

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