Skip to content

Commit

Permalink
Add the source name to the source projection log context. (#2223)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanLennox authored Oct 23, 2024
1 parent 8c4bcf9 commit 3ad9697
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ public AdaptiveSourceProjection(
this.diagnosticContext = diagnosticContext;
this.logger = parentLogger.createChildLogger(AdaptiveSourceProjection.class.getName(),
Map.of("targetSsrc", Long.toString(targetSsrc),
"srcEpId", Objects.toString(source.getOwner(), "")));
"srcEpId", Objects.toString(source.getOwner(), ""),
"srcName", source.getSourceName()
));
this.keyframeRequester = keyframeRequester;
}

Expand Down

0 comments on commit 3ad9697

Please sign in to comment.