diff --git a/src/website.cpp b/src/website.cpp index 2e68bed..527e173 100644 --- a/src/website.cpp +++ b/src/website.cpp @@ -150,6 +150,7 @@ std::vector Website::getGames() { for (unsigned int i = 0; i < root["products"].size(); ++i) { + std::cerr << "Getting game names " << "(" << root["page"].asInt() << "/" << root["totalPages"].asInt() << ") " << i+1 << " / " << root["products"].size() << "\r" << std::flush; Json::Value product = root["products"][i]; gameItem game; game.name = product["slug"].asString(); @@ -229,6 +230,7 @@ std::vector Website::getGames() } i++; } while (!bAllPagesParsed); + std::cerr << std::endl; delete jsonparser;