From 8a5c52e53fdf9b9f855bfb0eba893b06ae0b6b00 Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Wed, 6 Feb 2019 23:07:00 +0100 Subject: [PATCH] move Logging types back to Grpc.Core --- src/csharp/Grpc.Core/ForwardedTypes.cs | 2 -- src/csharp/{Grpc.Core.Api => Grpc.Core}/Logging/ILogger.cs | 0 src/csharp/{Grpc.Core.Api => Grpc.Core}/Logging/LogLevel.cs | 0 3 files changed, 2 deletions(-) rename src/csharp/{Grpc.Core.Api => Grpc.Core}/Logging/ILogger.cs (100%) rename src/csharp/{Grpc.Core.Api => Grpc.Core}/Logging/LogLevel.cs (100%) diff --git a/src/csharp/Grpc.Core/ForwardedTypes.cs b/src/csharp/Grpc.Core/ForwardedTypes.cs index e17696a626f..dd7f292a248 100644 --- a/src/csharp/Grpc.Core/ForwardedTypes.cs +++ b/src/csharp/Grpc.Core/ForwardedTypes.cs @@ -26,8 +26,6 @@ using Grpc.Core.Utils; // TODO(jtattermusch): move types needed for implementing a client -[assembly:TypeForwardedToAttribute(typeof(ILogger))] -[assembly:TypeForwardedToAttribute(typeof(LogLevel))] [assembly:TypeForwardedToAttribute(typeof(GrpcPreconditions))] [assembly:TypeForwardedToAttribute(typeof(AuthContext))] [assembly:TypeForwardedToAttribute(typeof(ContextPropagationOptions))] diff --git a/src/csharp/Grpc.Core.Api/Logging/ILogger.cs b/src/csharp/Grpc.Core/Logging/ILogger.cs similarity index 100% rename from src/csharp/Grpc.Core.Api/Logging/ILogger.cs rename to src/csharp/Grpc.Core/Logging/ILogger.cs diff --git a/src/csharp/Grpc.Core.Api/Logging/LogLevel.cs b/src/csharp/Grpc.Core/Logging/LogLevel.cs similarity index 100% rename from src/csharp/Grpc.Core.Api/Logging/LogLevel.cs rename to src/csharp/Grpc.Core/Logging/LogLevel.cs