Skip to content

Commit

Permalink
Comment out debug message.
Browse files Browse the repository at this point in the history
  • Loading branch information
sipsorcery committed Jan 25, 2025
1 parent 06a4d34 commit e8bbcd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/OpenAIExamples/WebRTCOpenAI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ private static async Task<RTCPeerConnection> CreatePeerConnection(SemaphoreSlim
/// </summary>
private static void OnDataChannelMessage(RTCDataChannel dc, DataChannelPayloadProtocols protocol, byte[] data)
{
logger.LogInformation($"Data channel {dc.label}, protocol {protocol} message length {data.Length}.");
//logger.LogInformation($"Data channel {dc.label}, protocol {protocol} message length {data.Length}.");

var message = Encoding.UTF8.GetString(data);
var serverEvent = JsonSerializer.Deserialize<OpenAIServerEventBase>(message, JsonOptions.Default);
Expand Down

0 comments on commit e8bbcd1

Please sign in to comment.