made error to info for not finding project file

This commit is contained in:
Sven Vogel 2024-06-03 10:18:33 +02:00
parent e25fd4b559
commit 22ed50f441
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ int load_project_config(ProjectConfig *config) {
FILE *config_file = fopen(PROJECT_CONFIG_FILE, "r");
if (config_file == NULL) {
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;
}