When I use Comment issue post function, I add log events for debugging. However, I've noticed INFO events don't work for me. Only when I use log.warn(...) events, they show up in atlassian-jira.log
.
Even when I've added jmwe.plugins.functions.CommentIssueFunction
package to log4j.properties
, it's still a no-show.
When should I do to add there INFO events to my log?
Could something like this work (as it does in Script Runner):
import org.apache.log4j.Category def Category log = Category.getInstance("jmwe.plugins.functions.CommentIssueFunction"); log.setLevel(org.apache.log4j.Level.INFO);
The right package to add to log4j.properties (or in the Logging settings of JIRA admin) is "com.innovalog.groovy" if you want to get the results of log.info() calls in your Groovy script.
Hi David,
Thanks for your response. I've tried both adding
log4j.logger.com.innovalog.groovy = INFO, console, filelog log4j.additivity.com.innovalog.groovy = false
To log4j.properties
as well as adding this package to the Logging settings in JIRA's UI. None showed any log event.
Is there something else that could be done?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My bad. The correct package (class, really) is: com.innovalog.jmwe.plugins.functions.CommentIssueFunction
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks David. com.innovalog.jmwe.plugins.functions.CommentIssueFunction
worked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.