fixing bad format statement

This commit is contained in:
Ryan Poplin 2011-07-02 18:09:17 -04:00
parent 781c0c33a4
commit 41d46059e7
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ public class VariantDataManager {
numAdded++;
}
}
logger.info( "Additionally training with worst " + String.format("%0.3f", (float) bottomPercentage * 100.0f) + "% of passing data --> " + (trainingData.size() - numBadSitesAdded) + " variants with LOD <= " + String.format("%.4f", data.get(index).lod) + "." );
logger.info( "Additionally training with worst " + String.format("%.3f", (float) bottomPercentage * 100.0f) + "% of passing data --> " + (trainingData.size() - numBadSitesAdded) + " variants with LOD <= " + String.format("%.4f", data.get(index).lod) + "." );
return trainingData;
}