This content has been marked as final. 
    
Show                 3 replies
    
- 
        1. Re: Not getting TaskEndLog when canceling the TaskInstancesrlucas Jan 27, 2009 5:09 PM (in response to vikas_khengare22)I am experiencing a similar issue. 
 I am still trying to track down what is wrong, but in my case the following code:
 JbpmContext jbpmContext = getContext();
 TaskInstance taskInstance =
 jbpmContext.getTaskInstance(taskInstanceId);
 // leave the node
 if (transitionName == null) {
 taskInstance.end();
 } else {
 //taskInstance.getToken().
 taskInstance.end(transitionName);
 }
 yields no log to be added to the logSession. I am not even getting a TaskEndLog object in the logSession...
 I'll try to get back once I've found out what's wrong...
- 
        2. Re: Not getting TaskEndLog when canceling the TaskInstancebradsdavis Mar 16, 2009 6:13 PM (in response to vikas_khengare22)Is anyone getting task logs in 3.3.1GA? 
 Thanks,
 Brad
- 
        3. Re: Not getting TaskEndLog when canceling the TaskInstancebradsdavis Mar 17, 2009 2:37 PM (in response to vikas_khengare22)I got logging working by the way with 3.3.1. It was user error =) 
 
     
    