diff options
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; - } } } |