From 16d89601ffdb31a93723ca5e7f736cd14ee64cfb Mon Sep 17 00:00:00 2001 From: Paul Wells Date: Sun, 15 Mar 2026 04:14:14 -0700 Subject: [PATCH] Rename log field "pID" to "participantID" for consistency Co-Authored-By: Claude Opus 4.6 (1M context) --- cmd/lk/room.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/lk/room.go b/cmd/lk/room.go index 2f206ccd..51c606df 100644 --- a/cmd/lk/room.go +++ b/cmd/lk/room.go @@ -870,14 +870,14 @@ func joinRoom(ctx context.Context, cmd *cli.Command) error { OnParticipantConnected: func(p *lksdk.RemoteParticipant) { logger.Infow("participant connected", "kind", p.Kind(), - "pID", p.SID(), + "participantID", p.SID(), "participant", p.Identity(), ) }, OnParticipantDisconnected: func(p *lksdk.RemoteParticipant) { logger.Infow("participant disconnected", "kind", p.Kind(), - "pID", p.SID(), + "participantID", p.SID(), "participant", p.Identity(), ) },