You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm trying to write a JQL Script Function an I keep getting NoViableAltException(59@[]) error. I believe the problem is with my constructed JQL statement and want to display the statement in the logs. However, when I include logging statements, I get compilation errors.
I have both of the following import statements:
import groovy.util.logging.Log4j
import org.apache.log4j.Category
I've tried:
def Category log = Category.getInstance("com.onresolve.jira.groovy");
log.setLevel(org.apache.log4j.Level.DEBUG);
log.debug "debug statements";
and
def Category log = Category.getInstance("com.onresolve.jira.groovy.PostFunction");
log.setLevel(org.apache.log4j.Level.DEBUG);
log.info "debug statements";
Both return the compilation error
unexpected token: log @ line 35, column 1.
log.setLevel(org.apache.log4j.Level.DEBUG)
Any suggestions on how I can get this to work?
Thanks, Peter