浏览代码

Improve logging wording

/3.1
Tim Mowrer 5 年前
当前提交
c00a1b39
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 6
      Assets/Scenes/ARCollaborationData/TCPConnection.cs

6
Assets/Scenes/ARCollaborationData/TCPConnection.cs


{
m_CollaborationDataReadQueue.Enqueue(collaborationData);
}
Logger.Log($"Received {messageHeader.messageSize} bytes from remote host.");
Logger.Log($"Received {messageHeader.messageSize} bytes of collaboration data.");
Logger.Log($"Received {messageHeader.messageSize} bytes from remote host, but the collaboration data was not valid.");
Logger.Log($"Received {messageHeader.messageSize} bytes from remote, but the collaboration data was not valid.");
Logger.Log($"Unhandled message type {messageHeader.messageType}");
Logger.Log($"Unhandled message type '{messageHeader.messageType}'. Ignoring.");
// We don't understand this message, but read it out anyway
// so we can process the next message

正在加载...
取消
保存