Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pkg/sip/inbound.go
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,12 @@ func (c *inboundCall) handleInvite(ctx context.Context, tid traceid.ID, req *sip
if disp.DispatchRuleID != "" {
c.appendLogValues("sipRule", disp.DispatchRuleID)
}
for key, value := range disp.FeatureFlags {
c.appendLogValues("featureFlag_"+key, value)
}
for _, feature := range disp.EnabledFeatures {
c.appendLogValues(feature.String(), "true")
}
Comment on lines +701 to +706
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not currently necessary imo - we already have logs of all requests coming into the system.


c.state.Update(ctx, func(info *livekit.SIPCallInfo) {
info.TrunkId = disp.TrunkID
Expand Down