From 5127bb841f9b54ac63819a6c028021d3ee6cbf1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Betto?= <niccolo.betto@skywarder.eu> Date: Thu, 13 Mar 2025 11:36:49 +0100 Subject: [PATCH] [RIGv2] Reword initial registry load failure message --- src/RIGv2/rig-v2-entry.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/RIGv2/rig-v2-entry.cpp b/src/RIGv2/rig-v2-entry.cpp index 013353999..6548c191f 100644 --- a/src/RIGv2/rig-v2-entry.cpp +++ b/src/RIGv2/rig-v2-entry.cpp @@ -115,7 +115,8 @@ int main() // Perform an initial registry load std::cout << "Loading backed registry" << std::endl; if (registry->load() != RegistryError::OK) - std::cout << "*** Failed to load backed registry ***" << std::endl; + std::cout << "* Warning: could not load a saved registry *" + << std::endl; std::cout << "Starting Actuators" << std::endl; if (!actuators->start()) -- GitLab