From 0428f95a000f87f4678161a305598cda20a0d06d Mon Sep 17 00:00:00 2001 From: Tommi Date: Tue, 18 Jan 2022 11:58:25 +0000 Subject: [PATCH] Remove frequent log. The logged condition occurs very frequently (essentially log spam) and has been ignored for a couple of years. So, logging it as a warning seems unnecessary. Bug: none Change-Id: Ia7163c7a8e9af618685fa5655e90ee85f3cff87b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/247366 Reviewed-by: Johannes Kron Commit-Queue: Johannes Kron Auto-Submit: Tomas Gunnarsson Cr-Commit-Position: refs/heads/main@{#35721} --- pc/used_ids.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pc/used_ids.h b/pc/used_ids.h index e88927aaf2..1236a786df 100644 --- a/pc/used_ids.h +++ b/pc/used_ids.h @@ -52,8 +52,7 @@ class UsedIds { if (IsIdUsed(original_id)) { new_id = FindUnusedId(); - RTC_LOG(LS_WARNING) << "Duplicate id found. Reassigning from " - << original_id << " to " << new_id; + // Duplicate id found. Reassign from the original id to the new. idstruct->id = new_id; } SetIdUsed(new_id);