]> source.dussan.org Git - archiva.git/commitdiff
add a FIXME comment
authorOlivier Lamy <olamy@apache.org>
Sun, 19 May 2013 22:26:08 +0000 (22:26 +0000)
committerOlivier Lamy <olamy@apache.org>
Sun, 19 May 2013 22:26:08 +0000 (22:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1484361 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java

index c0ed85a16009f0fbfdc81e3433a9e51327df1f1d..e93405b555e84a5f390fdf31ed64ea62d4fd79a8 100644 (file)
@@ -151,6 +151,8 @@ public class DefaultRepositoryStatisticsManager
 
         long startGather = System.currentTimeMillis();
 
+        // FIXME what about other implementations ?
+
         if ( metadataRepository.canObtainAccess( Session.class ) )
         {
             // TODO: this is currently very raw and susceptible to changes in content structure. Should we instead
@@ -168,7 +170,7 @@ public class DefaultRepositoryStatisticsManager
             populateStatisticsFromRepositoryWalk( metadataRepository, repositoryId, repositoryStatistics );
         }
 
-        log.info( "Gathering statistics executed in " + ( System.currentTimeMillis() - startGather ) + "ms" );
+        log.info( "Gathering statistics executed in {} ms",  ( System.currentTimeMillis() - startGather ) );
 
         metadataRepository.addMetadataFacet( repositoryId, repositoryStatistics );
     }