我想使用Javascript脚本调解器进行日志调试以调试porpouses。必须将消息/变量值...添加到上下文变量并在序列中使用日志中介是非常烦人的。
有没有办法避免这种情况?
敬意。
答案 0 :(得分:11)
您只需要在脚本调解器中获取ServiceLog并按如下方式使用它:
<script language="js">
var log = mc.getServiceLog();
log.info("Logging inside Script Mediator");
</script>
答案 1 :(得分:3)
您可以使用print(message/variable);
。它将在终端中显示消息/变量。