So, my suggestion is to: - deprecate the use of LogKit - switch to log4j as default - make it possible to configure log4j from within Cocoon (like the current logkit.xml for LogKit).
Is this change transparent to the end-user? I mean all I need to do ATM to print logging statements is getLogger().debug() or worste case implement Loggable.
Will this change then transparently hand you a log4j logger or do I need to declare one of those pesky
private static final Logger logger = Logger.getLogger(myclass.class)
in each class?
Or did i miss your point entirely?
Jorg