You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ns...@apache.org on 2011/10/11 04:06:37 UTC

svn commit: r1181415 - /hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFile.java

Author: nspiegelberg
Date: Tue Oct 11 02:06:36 2011
New Revision: 1181415

URL: http://svn.apache.org/viewvc?rev=1181415&view=rev
Log:
Fixed silly String.format bug. Peer Reviewed by Aravind (so helpful)

Modified:
    hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFile.java

Modified: hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFile.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFile.java?rev=1181415&r1=1181414&r2=1181415&view=diff
==============================================================================
--- hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFile.java (original)
+++ hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFile.java Tue Oct 11 02:06:36 2011
@@ -714,7 +714,7 @@ public class StoreFile {
           bt = bloomType;
         } catch (IllegalArgumentException iae) {
           LOG.error(String.format(
-            "Parse error while creating bloom for %s (%d, %d)",
+            "Parse error while creating bloom for %s (%d, %f)",
             path, maxKeys, err), iae);
           bloom = null;
           bt = BloomType.NONE;