forked from mirrors/gecko-dev
Bug 1326005: Make this log at INFO because that's the level we log on the sending side. r=mjf
Differential Revision: https://phabricator.services.mozilla.com/D82035
This commit is contained in:
parent
27a79c0e53
commit
40f9bf512c
1 changed files with 3 additions and 3 deletions
|
|
@ -292,9 +292,9 @@ nsresult NrIceMediaStream::ParseTrickleCandidate(const std::string& candidate,
|
|||
return NS_ERROR_FAILURE;
|
||||
}
|
||||
|
||||
MOZ_MTLOG(ML_DEBUG, "NrIceCtx(" << ctx_->label << ")/STREAM(" << name()
|
||||
<< ") : parsing trickle candidate "
|
||||
<< candidate);
|
||||
MOZ_MTLOG(ML_INFO, "NrIceCtx(" << ctx_->label << ")/STREAM(" << name()
|
||||
<< ") : parsing trickle candidate "
|
||||
<< candidate);
|
||||
|
||||
int r = nr_ice_peer_ctx_parse_trickle_candidate(
|
||||
ctx_peer_, stream, const_cast<char*>(candidate.c_str()),
|
||||
|
|
|
|||
Loading…
Reference in a new issue