temperature_calibration: change some log levels to be more appropriate

This commit is contained in:
Beat Küng
2017-01-25 18:27:49 +01:00
committed by Lorenz Meier
parent 5c7dbe0f24
commit e74e883c56
@@ -326,7 +326,7 @@ void Tempcal::task_main()
delete tempcal::instance;
tempcal::instance = nullptr;
PX4_WARN("Tempcal process stopped");
PX4_INFO("Tempcal process stopped");
}
void Tempcal::do_temperature_calibration(int argc, char *argv[])
@@ -348,7 +348,7 @@ int Tempcal::start()
if (_control_task < 0) {
delete tempcal::instance;
tempcal::instance = nullptr;
PX4_WARN("start failed");
PX4_ERR("start failed");
return -errno;
}
@@ -361,7 +361,7 @@ int run_temperature_calibration()
tempcal::instance = new Tempcal();
if (tempcal::instance == nullptr) {
PX4_WARN("alloc failed");
PX4_ERR("alloc failed");
return 1;
}