From 6acd2944bcbb61fbc926f58b3d2cbe71cccfdf93 Mon Sep 17 00:00:00 2001 From: Raja Subramanian Date: Fri, 12 Aug 2022 23:51:20 +0530 Subject: [PATCH] As "remote" is a logging context key already, use a different name. (#910) --- pkg/rtc/transport.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/rtc/transport.go b/pkg/rtc/transport.go index 47b8786b7..e893eba32 100644 --- a/pkg/rtc/transport.go +++ b/pkg/rtc/transport.go @@ -298,10 +298,10 @@ func (t *PCTransport) logICECandidates() { t.lock.RLock() t.params.Logger.Infow( "ice candidates", - "local", t.allowedLocalCandidates, - "remote", t.allowedRemoteCandidates, - "local (filtered)", t.filteredLocalCandidates, - "remote (filtered)", t.filteredRemoteCandidates, + "lc", t.allowedLocalCandidates, + "rc", t.allowedRemoteCandidates, + "lc (filtered)", t.filteredLocalCandidates, + "rc (filtered)", t.filteredRemoteCandidates, ) t.lock.RUnlock() }