Remove debug messages related to config file loading

This commit is contained in:
Daniel Schulte 2020-11-22 19:29:10 +01:00
parent baec1fdf2c
commit 971e8fa99e
1 changed files with 0 additions and 3 deletions

View File

@ -427,10 +427,7 @@ int main()
auto config_data = load_json(config_file);
if(config_data) {
config = *config_data;
fprintf(stderr, "Using config file %s...\n", config_file.c_str());
break;
} else {
fprintf(stderr, "Can't read config file %s...\n", config_file.c_str());
}
}
if(config.contains("apiKey") && config["apiKey"].is_string()) {