Skip to content

Commit 8d72421

Browse files
QGCCameraManager.cc: change log from qWarning to CameraManagerLog:
This made sense when we were not taking compid autopilot into account, but now it will log this every vehicle connection if it isn't emulating a mavlink camera
1 parent c1a85b0 commit 8d72421

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Camera/QGCCameraManager.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ QGCCameraManager::_handleHeartbeat(const mavlink_message_t &message)
135135
if(pInfo->tryCount > 10) {
136136
if(!pInfo->gaveUp) {
137137
pInfo->gaveUp = true;
138-
qWarning() << "Giving up requesting camera info from" << _vehicle->id() << message.compid;
138+
qCDebug(CameraManagerLog) << "Giving up requesting camera info from" << _vehicle->id() << message.compid;
139139
}
140140
} else {
141141
pInfo->tryCount++;

0 commit comments

Comments
 (0)