Print also a reason for skipping a config file

pull/58/head
jackun 4 years ago
parent 31a651133c
commit 72d7f6ef71
No known key found for this signature in database
GPG Key ID: 119DB3F1D05A9ED3

@ -77,7 +77,7 @@ void parseConfigFile() {
std::ifstream stream(*p);
if (!stream.good()) {
// printing just so user has an idea of possible configs
std::cerr << "skipping config: " << *p << std::endl;
std::cerr << "skipping config: " << *p << " [ not found ]" << std::endl;
continue;
}

Loading…
Cancel
Save