Bug #5534
closedReplication log somehow doesn't work.
0%
Description
Metacat logged the some important replication information into the metacatreplication.log file which stays in the directory specified by property replication.logdir in metacat.properties file.
This metacatreplication.log file helped the user to monitor the replication process easily.
However, it is just sort of working right now.
Duane reported that the last timed replication on LTER was 2011-11-03, but the last time to touch the log file was 2010-04-26.
Knb has the similar scenario.
I dug a little bit on the metacat code. In replication relevant class, it always has something like:
private static Logger logReplication = Logger.getLogger("ReplicationLogging");
private static Logger logMetacat = Logger.getLogger(ForceReplicationHandler.class);
Replication information was reorded to both logReplication and logMetacat.
I believe the loggers write info to catalina.out.
Since the catalina.out is big file and not easily to track, is it possible we still to make metacatreplication.log work?