diff options
author | lloyd <[email protected]> | 2008-11-10 20:38:32 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-10 20:38:32 +0000 |
commit | b1905058bdc3e96ca4311ac8cfa82aa736f73eb4 (patch) | |
tree | 8f831abf9b8e9f9781a84e8ebc8bb00a0eb9dfbb /src/libstate | |
parent | 3f7aed2d08446b59f9cab7efe25fcc746e4ef3a7 (diff) |
Remove printfs
Diffstat (limited to 'src/libstate')
-rw-r--r-- | src/libstate/algo_factory.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libstate/algo_factory.cpp b/src/libstate/algo_factory.cpp index 019c79059..cbb3c8faa 100644 --- a/src/libstate/algo_factory.cpp +++ b/src/libstate/algo_factory.cpp @@ -25,7 +25,6 @@ Algorithm_Factory::~Algorithm_Factory() */ void Algorithm_Factory::add_engine(Engine* engine) { - printf("Add engine %s\n", engine->provider_name().c_str()); engines.push_back(engine); } @@ -53,11 +52,7 @@ Algorithm_Factory::prototype_hash_function(const SCAN_Name& request) engines[i]->prototype_hash_function(request, *this); if(algo) - { - printf("Got %s from %s\n", algo->name().c_str(), - engines[i]->provider_name().c_str()); return algo; - } } } |