From 6e3ce7423ef97f53987e768113e3fa4699a3e93e Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Mon, 22 Jan 2018 20:04:05 +0000 Subject: [PATCH] Hadrons: don't display module list at startup (too long) --- extras/Hadrons/Application.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/extras/Hadrons/Application.cc b/extras/Hadrons/Application.cc index 7ba98ade..39c898bc 100644 --- a/extras/Hadrons/Application.cc +++ b/extras/Hadrons/Application.cc @@ -43,12 +43,6 @@ using namespace Hadrons; Application::Application(void) { initLogger(); - LOG(Message) << "Modules available:" << std::endl; - auto list = ModuleFactory::getInstance().getBuilderList(); - for (auto &m: list) - { - LOG(Message) << " " << m << std::endl; - } auto dim = GridDefaultLatt(), mpi = GridDefaultMpi(), loc(dim); locVol_ = 1; for (unsigned int d = 0; d < dim.size(); ++d)