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()
当然のことですが、「戻り値なし」の戻り値が返され、print ステートメントが機能していないか、間違った場所 (Chrome コンソール) で探しています。
なんでも?
実際には、これは期待どおりに機能します。print出力を使用すると、サーバー ログにリダイレクトされますcatalina.out。私の Linux サーバーでは、ファイルは次の場所にあります。
print
catalina.out
/opt/atlassian/jira/logs/catalina.out
上記のスクリプトを実行すると、文字列this is a testがファイルに追加されます。
this is a test