From f519904c38c2034cc44b191dd885c5b940677885 Mon Sep 17 00:00:00 2001 From: Quantum Date: Thu, 24 Nov 2022 19:37:15 -0500 Subject: [PATCH] [host] app: clarify that config file not found is not fatal This prevents users from thinking this is the problem they are facing. --- host/src/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/src/app.c b/host/src/app.c index 9cc96abf..87fe4b53 100644 --- a/host/src/app.c +++ b/host/src/app.c @@ -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))