[host] app: clarify that config file not found is not fatal

This prevents users from thinking this is the problem they are facing.
This commit is contained in:
Quantum 2022-11-24 19:37:15 -05:00 committed by Geoffrey McRae
parent fa6f1abaac
commit f519904c38

View File

@ -748,7 +748,7 @@ int app_main(int argc, char * argv[])
if (option_load(configFile))
DEBUG_INFO("Configuration file loaded");
else
DEBUG_INFO("Configuration file not found or invalid");
DEBUG_INFO("Configuration file not found or invalid, continuing anyway...");
// parse the command line arguments
if (!option_parse(argc, argv))