Kerekes Hunor-Attila
Kerekes Hunor-Attila

Reputation: 43

Drools Log files

I am beginner in JBPM and Drools, and I don't know where I can trace the error messages from the drools engine when I am running my deployed application (Process Model with user tasks and Business Rules). Anybody can tell me please?

Upvotes: 3

Views: 3966

Answers (1)

Tomasz Nurkiewicz
Tomasz Nurkiewicz

Reputation: 340933

Have a look at KnowledgeRuntimeLoggerFactory:

KnowledgeRuntimeLogger logger = 
   KnowledgeRuntimeLoggerFactory.newFileLogger(ksession, "logdir/mylogfile");

See also

Upvotes: 2

Related Questions