From: Michael Vrable Date: Mon, 4 Nov 2013 21:51:00 +0000 (-0800) Subject: Delete a debugging message on hash algorithm registration. X-Git-Url: http://git.vrable.net/?p=cumulus.git;a=commitdiff_plain;h=8f92b619b6c3ca8758c102d29b33ca1d2b43f568 Delete a debugging message on hash algorithm registration. --- diff --git a/hash.cc b/hash.cc index 2875814..571bc1d 100644 --- a/hash.cc +++ b/hash.cc @@ -32,7 +32,6 @@ static map 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)); }