[jbpm-dev] [Design of JBoss jBPM] - Re: Log for task start in jbpm 3.3.1.GA

osvaldo.pina do-not-reply at jboss.com
Fri May 29 18:07:10 EDT 2009


I deployed a very simple process with just one task:


  | <?xml version="1.0" encoding="UTF-8"?>
  | 
  | <process-definition xmlns="urn:jbpm.org:jpdl-3.2" name="simple">
  | 
  |    <start-state name="start">
  | 		<transition to="task-node1"></transition>
  |    </start-state>
  | 
  |    <task-node name="task-node1">
  | 		<task name="task1"></task>
  | 		<transition to="end"></transition>
  |    </task-node>
  | 
  |    <end-state name="end"></end-state>
  | 
  | </process-definition>
  | 

and then I started an instance of this process and finished it tracing the logs for every action:

logs for action -> Start a new instance:
 id_ = 6,  class_=   I -> ProcessIstanceCreateLog


logs for action -> Signal:
id_ =  7,  class_=  S -> SignalLog
id_ =  8,  class_=  T -> TransitionLog
id_ =  9,  class_=  1 -> TaskCreateLog


logs for action ->Task start:
nothing was logged!


logs for action ->Task end:
id_ =  10,  class_=  3 -> TaskEndLog
id_ =  11,  class_=  S -> SingalLog
id_ =  12,  class_=  N -> NodeLog
id_ =  13,  class_=  T -> TransitionLog
id_ =  14,  class_=  X -> ProcessInstaceEndLog

 So, unless I missed some configuration, task starts are not being logged.
   
regards,
Osvaldo


View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4234223#4234223

Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4234223



More information about the jbpm-dev mailing list