Grpc.Core.GrpcEnvironment.SetLogger C# (CSharp) 메소드

SetLogger() 공개 정적인 메소드

Sets the application-wide logger that should be used by gRPC.
public static SetLogger ( ILogger customLogger ) : void
customLogger ILogger
리턴 void
        public static void SetLogger(ILogger customLogger)
        {
            GrpcPreconditions.CheckNotNull(customLogger, "customLogger");
            logger = customLogger;
        }