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 ...@@ -538,18 +538,13 @@ private async ValueTask<bool> TrySendOutOfBandAsync(RedisClient client, TypedRed
try try
{ {
var output = client?.LinkedPipe?.Output; var output = client?.LinkedPipe?.Output;
if (output == null) if (output == null) return false;
{
Console.WriteLine("No pipe");
return false;
}
await WriteResponseAsync(client, output, value); await WriteResponseAsync(client, output, value);
return true; return true;
} }
catch (Exception ex) catch
{ {
Console.WriteLine(ex.Message);
return false; 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