print if done parsing config file

pull/41/head
jackun 4 years ago
parent 6086a6b9ab
commit 3e0eda559d
No known key found for this signature in database
GPG Key ID: 119DB3F1D05A9ED3

@ -83,11 +83,13 @@ void parseConfigFile() {
std::string line;
for (auto& p : paths) {
std::cerr << "parsing config: " << p << std::endl;
std::cerr << "parsing config: " << p;
std::ifstream stream(p);
while (std::getline(stream, line))
{
parseConfigLine(line);
}
std::cerr << " [ ok ]" << std::endl;
}
}
Loading…
Cancel
Save