Index: oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/VersionGarbageCollector.java =================================================================== --- oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/VersionGarbageCollector.java (revision 1701645) +++ oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/VersionGarbageCollector.java (working copy) @@ -1,4 +1,4 @@ -/* +* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information @@ -87,13 +87,13 @@ final long oldestRevTimeStamp = nodeStore.getClock().getTime() - maxRevisionAgeInMillis; final Revision headRevision = nodeStore.getHeadRevision(); - log.info("Starting revision garbage collection. Revisions older than [{}] would be " + + log.info("Starting Version Garbage Collection. Revisions older than [{}] would be " + "removed", Utils.timestampToString(oldestRevTimeStamp)); //Check for any registered checkpoint which prevent the GC from running Revision checkpoint = nodeStore.getCheckpoints().getOldestRevisionToKeep(); if (checkpoint != null && checkpoint.getTimestamp() < oldestRevTimeStamp) { - log.info("Ignoring version gc as valid checkpoint [{}] found while " + + log.info("Ignoring Version Garbage Collection as valid checkpoint [{}] found while " + "need to collect versions older than [{}]", checkpoint.toReadableString(), Utils.timestampToString(oldestRevTimeStamp) ); @@ -105,7 +105,7 @@ collectSplitDocuments(stats, oldestRevTimeStamp); sw.stop(); - log.info("Version garbage collected in {}. {}", sw, stats); + log.info("Version Garbage Collection finished in {}. {}", sw, stats); return stats; }