From e4f52e355ddeadd5507bef47d1bdb0fbc16337c3 Mon Sep 17 00:00:00 2001 From: kelson42 Date: Wed, 29 Aug 2012 22:25:28 +0000 Subject: [PATCH] + improve the verbose messages --- src/common/kiwix/indexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/kiwix/indexer.cpp b/src/common/kiwix/indexer.cpp index d1145dad..65610307 100644 --- a/src/common/kiwix/indexer.cpp +++ b/src/common/kiwix/indexer.cpp @@ -417,8 +417,8 @@ namespace kiwix { bool Indexer::isRunning() { if (this->getVerboseFlag()) { std::cout << "isArticleExtractor running: " << (this->isArticleExtractorRunning() ? "yes" : "no") << std::endl; - std::cout << "isArticleIndexer running: " << (this->isArticleIndexerRunning() ? "yes" : "no") << std::endl; std::cout << "isArticleParser running: " << (this->isArticleParserRunning() ? "yes" : "no") << std::endl; + std::cout << "isArticleIndexer running: " << (this->isArticleIndexerRunning() ? "yes" : "no") << std::endl; } return this->isArticleExtractorRunning() || this->isArticleIndexerRunning() || this->isArticleParserRunning();