mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Log some warnings
This commit is contained in:
parent
1605039929
commit
adc94a280e
2 changed files with 2 additions and 0 deletions
|
@ -356,6 +356,7 @@ void AssignmentClient::handleWebRTCSignalingPacket(QSharedPointer<ReceivedMessag
|
|||
// Echo message back to sender.
|
||||
|
||||
if (!json.keys().contains("to") || !json.keys().contains("from")) {
|
||||
qCDebug(assignment_client) << "Invalid WebRTC signaling echo message received.";
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -901,6 +901,7 @@ void DomainServer::sendWebRTCSignalingMessageToAssignmentClient(const QJsonObjec
|
|||
auto limitedNodeList = DependencyManager::get<LimitedNodeList>();
|
||||
auto destinationNode = limitedNodeList->soloNodeOfType(destinationNodeType);
|
||||
if (!destinationNode) {
|
||||
qWarning() << NodeType::getNodeTypeName(destinationNodeType) << "not found for WebRTC signaling message.";
|
||||
return;
|
||||
}
|
||||
// Use an NLPacketList because the signaling message is not necessarily small.
|
||||
|
|
Loading…
Reference in a new issue