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() }