Copter: Clarify the mode

This commit is contained in:
murata 2022-08-13 04:18:44 +09:00 committed by Randy Mackay
parent 95370ce74f
commit d519c94b32

View File

@ -603,7 +603,7 @@ bool AP_Arming_Copter::arm_checks(AP_Arming::Method method)
// always check if the current mode allows arming
if (!copter.flightmode->allows_arming(method)) {
check_failed(true, "Mode not armable");
check_failed(true, "%s mode not armable", copter.flightmode->name());
return false;
}