made error to info for not finding project file
This commit is contained in:
parent
e25fd4b559
commit
22ed50f441
|
@ -305,7 +305,7 @@ int load_project_config(ProjectConfig *config) {
|
||||||
FILE *config_file = fopen(PROJECT_CONFIG_FILE, "r");
|
FILE *config_file = fopen(PROJECT_CONFIG_FILE, "r");
|
||||||
if (config_file == NULL) {
|
if (config_file == NULL) {
|
||||||
print_message(Error, "Cannot open file %s: %s", PROJECT_CONFIG_FILE, strerror(errno));
|
print_message(Error, "Cannot open file %s: %s", PROJECT_CONFIG_FILE, strerror(errno));
|
||||||
ERROR("project file not found");
|
INFO("project file not found");
|
||||||
return PROJECT_TOML_ERR;
|
return PROJECT_TOML_ERR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue