Commit eb406a70 authored by Marc Gravell's avatar Marc Gravell

remove dome debug logging

parent f6d39ad6
......@@ -538,18 +538,13 @@ private async ValueTask<bool> TrySendOutOfBandAsync(RedisClient client, TypedRed
try
{
var output = client?.LinkedPipe?.Output;
if (output == null)
{
Console.WriteLine("No pipe");
return false;
}
if (output == null) return false;
await WriteResponseAsync(client, output, value);
return true;
}
catch (Exception ex)
catch
{
Console.WriteLine(ex.Message);
return false;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment