TS 7.3
Where to start. All I'm trying to do is set up custom logging. Based on advice from the forum (getting rid of the root) and my own experience with log4j, I've set my configuration at:
[PHP]
.../content_center/customer_src/etc/conf/customer/log4j.xml
.../content_center/livesite_customer_src/etc/conf/livesite_customer/log4j.xml
.../ApplicationContainer/server/default/deploy/iw-cc.war/WEB-INF/conf/log4j.xml
[/PHP]
with custom appenders for all classes within com.corp.content.*
Obviously each exact config differs (different appenders), but an example is:
[PHP]
xmlns:log4j="
http://jakarta.apache.org/log4j/" debug="true">
[/PHP]
I've tried with and without root. When I leave the root in, all levels are logged to the root (content_center.log). I've also tried enabling and disabling each of the different configurations to avoid them overwriting eachother.
The output from iwjboss_server_out.log always looks similar to this:
[PHP]
INFO [STDOUT] INFO - registering logger config C:\\Interwoven\\ApplicationContainer\\server\\default\\.\\deploy\\iw-cc.war\\WEB-INF\\conf\\log4j.xml
11:43:58,377 INFO [STDOUT] log4j: reset attribute= "false".
11:43:58,377 INFO [STDOUT] log4j: Threshold ="null".
11:43:58,393 INFO [STDOUT] log4j: Retreiving an instance of org.apache.log4j.Logger.
11:43:58,393 INFO [STDOUT] log4j: Setting [com.corp.content.*] additivity to [false].
11:43:58,393 INFO [STDOUT] log4j: Level value for com.corp.content.* is [debug].
11:43:58,393 INFO [STDOUT] log4j: com.corp.content.* level set to DEBUG
11:43:58,408 INFO [STDOUT] log4j: Class name: [org.apache.log4j.RollingFileAppender]
11:43:58,439 INFO [STDOUT] log4j: Setting property [file] to [C:\\Interwoven\\TeamSite\\local\\logs\\iwui/businessObjectLogs.log].
11:43:58,439 INFO [STDOUT] log4j: Setting property [maxFileSize] to [100MB].
11:43:58,439 INFO [STDOUT] log4j: Setting property [maxBackupIndex] to [10].
11:43:58,439 INFO [STDOUT] log4j: Parsing layout of class: "org.apache.log4j.PatternLayout"
11:43:58,471 INFO [STDOUT] log4j: Setting property [conversionPattern] to [%d [%t] %-5p %c (%x) - %m%n].
11:43:58,471 INFO [STDOUT] log4j: setFile called: C:\\Interwoven\\TeamSite\\local\\logs\\iwui/businessObjectLogs.log, true
11:43:58,471 INFO [STDOUT] log4j: setFile ended
11:43:58,471 INFO [STDOUT] log4j: Adding appender named [CONTENT] to category [com.corp.content.*].
[/PHP]
As I said, when I leave in the root element, items are logged there. However, ALL levels end up being logged there, as if it's ignored my earlier loggers.
The specified log files are being created, but remain empty.
If I take the root out, I can not get any logging to appear.
As for the java:
[PHP]
// instantiation
final Logger logger = Logger.getLogger(ExtendedAttributesServlet.class.getName());
final Log log = LogFactory.getLog(this.getClass());
// logging attempts
logger.setLevel(Level.DEBUG);
logger.debug("Logger DEBUG Entering doGet");
logger.warn("Logger WARN entering doGet");
logger.info("Logger INFO entering doGet");
logger.error("Logger ERR entering doGet");
logger.warn("Logger Debug enabled / Info enabled: " + log.isDebugEnabled() + "/" + log.isInfoEnabled());
log.debug("DEBUG Entering doGet");
log.warn("WARN entering doGet");
log.info("INFO entering doGet");
log.error("ERR entering doGet");
log.warn("Debug enabled / Info enabled: " + log.isDebugEnabled() + "/" + log.isInfoEnabled());
[/PHP]
Just occurred to me, this code obviously comes from a servlet. However, normal code (such as delivery of DCR contents) which falls under the same package is likewise not logging correctly. Also, though this is a Windows install, it mirrors the log4j setup on our linux machines, and the results are the same. Empty log files.
Any help would be appreciated.
EDIT: Sorry about the backslashes, the code blocks seem to eat them. In my actual output, the paths don't run together like that, they are valid paths, as evidenced by the successful creation of the log files.