px4io: change not supported message to INFO instead of ERR

This commit is contained in:
alexklimaj 2023-11-17 09:13:39 -07:00 committed by David Sidrane
parent 8f02184669
commit 1b99e7df81
1 changed files with 1 additions and 1 deletions

View File

@ -1765,7 +1765,7 @@ Output driver communicating with the IO co-processor.
extern "C" __EXPORT int px4io_main(int argc, char *argv[])
{
if (!PX4_MFT_HW_SUPPORTED(PX4_MFT_PX4IO)) {
PX4_ERR("PX4IO Not Supported");
PX4_INFO("PX4IO Not Supported");
return -1;
}
return PX4IO::main(argc, argv);