We develop a spring based application also using Aciviti BPM for process management. Activiti ships with a JobAcquisitionThread handling all TimeBoundary events. This thread periodically logs DEBUG messages to the console. Activiti (which uses java.util.logging) seems not to react on our spring framework logging (which uses log4j) config. How can Activiti be configured to use the same config as spring?
|
feedback
|
|
Log4j and java Logging have nothing in common but the gole to log. So it does not influent the java logging api if you configure somehting with log4j. You need to configue java logging. This is done by default with an file called See this Stack Overflow question: How to send java.util.logging to log4j? for some ways how to bridge the log messages, | |||
|
feedback
|