[jbosscache-commits] JBoss Cache SVN: r6764 - benchmarks/benchmark-fwk/trunk/src/org/cachebench/reportgenerators.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Fri Sep 19 13:51:19 EDT 2008


Author: manik.surtani at jboss.com
Date: 2008-09-19 13:51:19 -0400 (Fri, 19 Sep 2008)
New Revision: 6764

Modified:
   benchmarks/benchmark-fwk/trunk/src/org/cachebench/reportgenerators/ThroughputChartGenerator.java
Log:
wc

Modified: benchmarks/benchmark-fwk/trunk/src/org/cachebench/reportgenerators/ThroughputChartGenerator.java
===================================================================
--- benchmarks/benchmark-fwk/trunk/src/org/cachebench/reportgenerators/ThroughputChartGenerator.java	2008-09-19 16:55:20 UTC (rev 6763)
+++ benchmarks/benchmark-fwk/trunk/src/org/cachebench/reportgenerators/ThroughputChartGenerator.java	2008-09-19 17:51:19 UTC (rev 6764)
@@ -1,5 +1,7 @@
 package org.cachebench.reportgenerators;
 
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
 import org.apache.commons.math.stat.descriptive.DescriptiveStatistics;
 import org.jfree.chart.ChartFactory;
 import org.jfree.chart.ChartUtilities;
@@ -28,6 +30,7 @@
 {
    private DefaultCategoryDataset averageThroughput, totalThroughput;
    private String chartNameAverage = "chart-averageThroughput.png", chartNameTotal = "chart-totalThroughput.png";
+   private Log log = LogFactory.getLog(ThroughputChartGenerator.class);
 
    public void generateChart() throws IOException
    {
@@ -127,6 +130,7 @@
 
    private void readData(File f) throws IOException
    {
+      log.info("Parsing file " + f.getAbsoluteFile());
       // chop up the file name to get productAndConfiguration and clusterSize.
       Integer clusterSize = 0;
       DescriptiveStatistics stats = DescriptiveStatistics.newInstance();




More information about the jbosscache-commits mailing list