From f059aa01c60437218d3f92c4122b67455fa96185 Mon Sep 17 00:00:00 2001 From: alexklimaj Date: Fri, 17 Nov 2023 09:13:39 -0700 Subject: [PATCH] px4io: change not supported message to INFO instead of ERR --- src/drivers/px4io/px4io.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/px4io/px4io.cpp b/src/drivers/px4io/px4io.cpp index be7a76367256..4248900cc68e 100644 --- a/src/drivers/px4io/px4io.cpp +++ b/src/drivers/px4io/px4io.cpp @@ -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);