Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Jira 脚本控制台的新手。我本来以为:
def test(): print 'this is a test' return 'testing' test()
会做的很明显,但我得到一个“无返回值”的返回值,并且打印语句不起作用或者我在错误的地方(Chrome 控制台)寻找它。
任何事物?
实际上,这可以按预期工作,当使用print输出重定向到服务器日志时catalina.out。在我的 Linux 服务器上,该文件位于:
print
catalina.out
/opt/atlassian/jira/logs/catalina.out
当运行上面的脚本时,字符串this is a test将被附加到文件中。
this is a test