mirror of https://github.com/kiwix/libkiwix.git
+ improve the verbose messages
This commit is contained in:
parent
a0b8ef99fc
commit
e4f52e355d
|
@ -417,8 +417,8 @@ namespace kiwix {
|
||||||
bool Indexer::isRunning() {
|
bool Indexer::isRunning() {
|
||||||
if (this->getVerboseFlag()) {
|
if (this->getVerboseFlag()) {
|
||||||
std::cout << "isArticleExtractor running: " << (this->isArticleExtractorRunning() ? "yes" : "no") << std::endl;
|
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 << "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();
|
return this->isArticleExtractorRunning() || this->isArticleIndexerRunning() || this->isArticleParserRunning();
|
||||||
|
|
Loading…
Reference in New Issue