Bug Report
Overview
To Reproduce
Steps to reproduce the behavior:
Check the code:
private async Task<Response> StreamResponseAsync(...)
{
...
Console.WriteLine("\"" + text + "\": " + ssEvent.ToJsonString()); // <<<<<<<<<<<< is written always (maybe its feature?
JsonNode jsonNode = ssEvent.Data ?? ssEvent.Value;
....
Expected behavior
Maybe the code should be like this?
...
if (base.EnableDebug)
{
Console.WriteLine("\"" + text + "\": " + ssEvent.ToJsonString());
}
..