Used the below code for the same, but it is not working, Any help will be appreciated,Where can I see the logs?
import com.atlassian.jira.component.ComponentAccessor
import com.onresolve.jira.groovy.user.FormField
import com.onresolve.jira.groovy.user.FieldBehaviours
import groovy.transform.BaseScript
@BaseScript FieldBehaviours fieldBehaviours
getFieldById(getFieldChanged()).clearError()
def tsvalue = getFieldById(getFieldChanged()). getValue()
if(tsvalue.endsWith(’m’) && toInteger (tsvalue.minus(“m”))< 15) {
getFieldById(getFieldChanged()).setError(“Value is not proper”)
}
if(tsvalue.endsWith(’h’) && toInteger (tsvalue.minus(“h”)) > 8) {
getFieldById(getFieldChanged()).setError(“Value is not proper”)
}
Hi @Soumya Rajeshkumar ,
To see the logs for the behavior script please import logger package like
import org.apache.log4j.Level
import org.apache.log4j.Logger
def myLog = Logger.getLogger("com.jira.groovy.behaviour")
myLog.setLevel(Level.DEBUG)
myLog.debug(" Custom message write here")
Thanks a lot, but the script is not working . Need a solution for that also
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.