AP_AdvancedFailsafe: fix singleton panic message

This commit is contained in:
Bob Long 2024-12-15 21:02:27 +11:00 committed by Peter Barker
parent a48ff8431b
commit a598045fd0
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public:
{ {
AP_Param::setup_object_defaults(this, var_info); AP_Param::setup_object_defaults(this, var_info);
if (_singleton != nullptr) { if (_singleton != nullptr) {
AP_HAL::panic("AP_Logger must be singleton"); AP_HAL::panic("AP_AdvancedFailsafe must be singleton");
} }
_singleton = this; _singleton = this;