Drools Log Files
I am getting started in JBPM and Drools and I don’t know where I can track error messages from drools engine when I run a deployed application (process model with custom tasks and business rules). Can anyone tell me please?
+3
Kerekes Hunor-Attila
source
to share
1 answer
Take a look KnowledgeRuntimeLoggerFactory
:
KnowledgeRuntimeLogger logger =
KnowledgeRuntimeLoggerFactory.newFileLogger(ksession, "logdir/mylogfile");
see also
- How do I quietly log a Drools Resource Bill?
+1
Tomasz Nurkiewicz
source
to share