Delete a debugging message on hash algorithm registration.
[cumulus.git] / hash.cc
diff --git a/hash.cc b/hash.cc
index 2875814..571bc1d 100644 (file)
--- a/hash.cc
+++ b/hash.cc
@@ -32,7 +32,6 @@ static map<string, Hash *(*)()> hash_registry;
 
 void Hash::Register(const std::string& name, Hash *(*constructor)())
 {
-    printf("Registered hash algorithm %s\n", name.c_str());
     hash_registry.insert(make_pair(name, constructor));
 }