Modified: trunk/Source/WebCore/Modules/mediastream/PeerConnectionBackend.cpp (217081 => 217082)
--- trunk/Source/WebCore/Modules/mediastream/PeerConnectionBackend.cpp 2017-05-19 01:16:47 UTC (rev 217081)
+++ trunk/Source/WebCore/Modules/mediastream/PeerConnectionBackend.cpp 2017-05-19 01:43:36 UTC (rev 217082)
@@ -56,7 +56,7 @@
void PeerConnectionBackend::createOfferSucceeded(String&& sdp)
{
ASSERT(isMainThread());
- LOG(WebRTC, "Creating offer succeeded:\n%s\n", sdp.utf8().data());
+ RELEASE_LOG(WebRTC, "Creating offer succeeded:\n%s\n", sdp.utf8().data());
if (m_peerConnection.isClosed())
return;
@@ -69,7 +69,7 @@
void PeerConnectionBackend::createOfferFailed(Exception&& exception)
{
ASSERT(isMainThread());
- LOG(WebRTC, "Creating offer failed:\n%s\n", exception.message().utf8().data());
+ RELEASE_LOG(WebRTC, "Creating offer failed:\n%s\n", exception.message().utf8().data());
if (m_peerConnection.isClosed())
return;
@@ -91,7 +91,7 @@
void PeerConnectionBackend::createAnswerSucceeded(String&& sdp)
{
ASSERT(isMainThread());
- LOG(WebRTC, "Creating answer succeeded:\n%s\n", sdp.utf8().data());
+ RELEASE_LOG(WebRTC, "Creating answer succeeded:\n%s\n", sdp.utf8().data());
if (m_peerConnection.isClosed())
return;
@@ -104,7 +104,7 @@
void PeerConnectionBackend::createAnswerFailed(Exception&& exception)
{
ASSERT(isMainThread());
- LOG(WebRTC, "Creating answer failed:\n%s\n", exception.message().utf8().data());
+ RELEASE_LOG(WebRTC, "Creating answer failed:\n%s\n", exception.message().utf8().data());
if (m_peerConnection.isClosed())
return;
@@ -149,7 +149,7 @@
void PeerConnectionBackend::setLocalDescriptionSucceeded()
{
ASSERT(isMainThread());
- LOG(WebRTC, "Setting local description succeeded\n");
+ RELEASE_LOG(WebRTC, "Setting local description succeeded\n");
if (m_peerConnection.isClosed())
return;
@@ -163,7 +163,7 @@
void PeerConnectionBackend::setLocalDescriptionFailed(Exception&& exception)
{
ASSERT(isMainThread());
- LOG(WebRTC, "Setting local description failed:\n%s\n", exception.message().utf8().data());
+ RELEASE_LOG(WebRTC, "Setting local description failed:\n%s\n", exception.message().utf8().data());
if (m_peerConnection.isClosed())
return;
@@ -209,7 +209,7 @@
void PeerConnectionBackend::setRemoteDescriptionSucceeded()
{
ASSERT(isMainThread());
- LOG(WebRTC, "Setting remote description succeeded\n");
+ RELEASE_LOG(WebRTC, "Setting remote description succeeded\n");
if (m_peerConnection.isClosed())
return;
@@ -223,7 +223,7 @@
void PeerConnectionBackend::setRemoteDescriptionFailed(Exception&& exception)
{
ASSERT(isMainThread());
- LOG(WebRTC, "Setting remote description failed:\n%s\n", exception.message().utf8().data());
+ RELEASE_LOG(WebRTC, "Setting remote description failed:\n%s\n", exception.message().utf8().data());
if (m_peerConnection.isClosed())
return;
@@ -255,7 +255,7 @@
void PeerConnectionBackend::addIceCandidateSucceeded()
{
ASSERT(isMainThread());
- LOG(WebRTC, "Adding ice candidate succeeded\n");
+ RELEASE_LOG(WebRTC, "Adding ice candidate succeeded\n");
if (m_peerConnection.isClosed())
return;
@@ -270,7 +270,7 @@
void PeerConnectionBackend::addIceCandidateFailed(Exception&& exception)
{
ASSERT(isMainThread());
- LOG(WebRTC, "Adding ice candidate failed:\n%s\n", exception.message().utf8().data());
+ RELEASE_LOG(WebRTC, "Adding ice candidate failed:\n%s\n", exception.message().utf8().data());
if (m_peerConnection.isClosed())
return;
@@ -334,7 +334,7 @@
void PeerConnectionBackend::newICECandidate(String&& sdp, String&& mid)
{
- LOG(WebRTC, "Gathered ice candidate:\n%s\n", sdp.utf8().data());
+ RELEASE_LOG(WebRTC, "Gathered ice candidate:\n%s\n", sdp.utf8().data());
if (!m_shouldFilterICECandidates) {
fireICECandidateEvent(RTCIceCandidate::create(WTFMove(sdp), WTFMove(mid), 0));
@@ -350,7 +350,7 @@
void PeerConnectionBackend::doneGatheringCandidates()
{
ASSERT(isMainThread());
- LOG(WebRTC, "Finished ice candidate gathering\n");
+ RELEASE_LOG(WebRTC, "Finished ice candidate gathering\n");
m_peerConnection.fireEvent(RTCPeerConnectionIceEvent::create(false, false, nullptr));
m_peerConnection.updateIceGatheringState(RTCIceGatheringState::Complete);
Modified: trunk/Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp (217081 => 217082)
--- trunk/Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp 2017-05-19 01:16:47 UTC (rev 217081)
+++ trunk/Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp 2017-05-19 01:43:36 UTC (rev 217082)
@@ -214,7 +214,7 @@
void RTCPeerConnection::queuedCreateOffer(RTCOfferOptions&& options, SessionDescriptionPromise&& promise)
{
- LOG(WebRTC, "Creating offer\n");
+ RELEASE_LOG(WebRTC, "Creating offer\n");
if (isClosed()) {
promise.reject(INVALID_STATE_ERR);
return;
@@ -225,7 +225,7 @@
void RTCPeerConnection::queuedCreateAnswer(RTCAnswerOptions&& options, SessionDescriptionPromise&& promise)
{
- LOG(WebRTC, "Creating answer\n");
+ RELEASE_LOG(WebRTC, "Creating answer\n");
if (isClosed()) {
promise.reject(INVALID_STATE_ERR);
return;
@@ -236,7 +236,7 @@
void RTCPeerConnection::queuedSetLocalDescription(RTCSessionDescription& description, DOMPromiseDeferred<void>&& promise)
{
- LOG(WebRTC, "Setting local description:\n%s\n", description.sdp().utf8().data());
+ RELEASE_LOG(WebRTC, "Setting local description:\n%s\n", description.sdp().utf8().data());
if (isClosed()) {
promise.reject(INVALID_STATE_ERR);
return;
@@ -262,7 +262,7 @@
void RTCPeerConnection::queuedSetRemoteDescription(RTCSessionDescription& description, DOMPromiseDeferred<void>&& promise)
{
- LOG(WebRTC, "Setting remote description:\n%s\n", description.sdp().utf8().data());
+ RELEASE_LOG(WebRTC, "Setting remote description:\n%s\n", description.sdp().utf8().data());
if (isClosed()) {
promise.reject(INVALID_STATE_ERR);
@@ -288,7 +288,7 @@
void RTCPeerConnection::queuedAddIceCandidate(RTCIceCandidate* rtcCandidate, DOMPromiseDeferred<void>&& promise)
{
- LOG(WebRTC, "Received ice candidate:\n%s\n", rtcCandidate ? rtcCandidate->candidate().utf8().data() : "null");
+ RELEASE_LOG(WebRTC, "Received ice candidate:\n%s\n", rtcCandidate ? rtcCandidate->candidate().utf8().data() : "null");
if (isClosed()) {
promise.reject(INVALID_STATE_ERR);