Grzegorz Kossakowski wrote:
[EMAIL PROTECTED] pisze:
+++
cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-components/src/main/java/org/apache/cocoon/transformation/TraxTransformer.java
Thu Oct 18 19:45:18 2007
if (this.transformerHandler instanceof LogEnabled) {
-
((LogEnabled)this.transformerHandler).enableLogging(getLogger());
+ ((LogEnabled) this.transformerHandler).enableLogging(new
CLLoggerWrapper(getLogger()));
}
This commit is causing compilation errors on my side. Nothing surprising here,
there is no valid
constructor in CLLoggerWrapper suitable for this change.
There is: getLogger() returns commons logging Log object now. You should update
(at least cocoon-pipeline module, AbstractXMLProducer class) and do a clean
build. I know, it is a pain, and takes a lot of time, but there is no way around
it :)
Vadim