Hello, I'm on Jira Server 8.2.4 using Scriptrunner to make a post-function that breaks up a single description into multiple clones based on special tags that are parsed. This is because my company as a whole uses Jira for software development, but my department does not, though we track many approvals on very similar groups of assets, and use individual tickets and custom fields for that tracking.
I've got most of the code working, but as soon as I call issueFactory.cloneIssueWithAllFields(), the script continues to run successfully, but I cannot see any additional logs, which is making debugging difficult.
I suspect this is because a new log is started for each new issue once cloneIssueWithAllFields() is called, but the original issue runs in a loop until all tags are found and a new ticket is made for each.
After cloning, the information is updated and then the issue itself is created with issueManager.createIssueObject()
I am reading the logs in the post-function workflow and don't know of another way to access them.
Thanks! These forums have been invaluable in getting me this far!