调用自定义命令时,我注意到只显示日志。例如,如果我的自定义命令脚本包含一个 retrun 语句return "great custom command"
,我在结果中找不到它。在 API Java 客户端或 shell 执行案例中。
我该怎么做才能在执行结束时检索该结果?
谢谢。
服务描述文件中的命令定义:
customCommands ([
"getText" : "getText.groovy"
])
getText.groovy 文件内容:
def text = "great custom command"
println "trying to get a text"
return text