aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.HealthCheck.Tests/NUnitMain.cs
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2017-08-23 09:56:47 -0700
committerGravatar Muxi Yan <mxyan@google.com>2017-08-23 09:56:47 -0700
commit6b2b5bd64588d7759e2a10e5fe39ecfcf92e4ea6 (patch)
tree5b263ab4fbff3d69479865f76415539ad730d39e /src/csharp/Grpc.HealthCheck.Tests/NUnitMain.cs
parent76e158f2c11706825c2c807cc9f092c79a8ad419 (diff)
parenta2ebc04fa923ee88ed19724a8cc1901f75dde06e (diff)
Merge remote-tracking branch 'upstream/master' into stream_compression_config
Diffstat (limited to 'src/csharp/Grpc.HealthCheck.Tests/NUnitMain.cs')
-rw-r--r--src/csharp/Grpc.HealthCheck.Tests/NUnitMain.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.HealthCheck.Tests/NUnitMain.cs b/src/csharp/Grpc.HealthCheck.Tests/NUnitMain.cs
index 57deb3ba30..365551e895 100644
--- a/src/csharp/Grpc.HealthCheck.Tests/NUnitMain.cs
+++ b/src/csharp/Grpc.HealthCheck.Tests/NUnitMain.cs
@@ -33,7 +33,7 @@ namespace Grpc.HealthCheck.Tests
public static int Main(string[] args)
{
// Make logger immune to NUnit capturing stdout and stderr to workaround https://github.com/nunit/nunit/issues/1406.
- GrpcEnvironment.SetLogger(new TextWriterLogger(Console.Error));
+ GrpcEnvironment.SetLogger(new ConsoleLogger());
#if NETCOREAPP1_0
return new AutoRun(typeof(NUnitMain).GetTypeInfo().Assembly).Execute(args, new ExtendedTextWrapper(Console.Out), Console.In);
#else