forked from Archive/PX4-Autopilot
posix main: print script failure as an error instead of a warning
This commit is contained in:
parent
273988c124
commit
9d66bcefd3
|
@ -527,7 +527,7 @@ int run_startup_bash_script(const std::string &commands_file, const std::string
|
||||||
PX4_INFO("Startup script returned successfully");
|
PX4_INFO("Startup script returned successfully");
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
PX4_WARN("Startup script returned with return value: %d", ret);
|
PX4_ERR("Startup script returned with return value: %d", ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue