The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Can I log messages from JQL Script Function

Peter Macdonald
April 8, 2018

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 

0 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

TAGS
AUG Leaders

Atlassian Community Events