Skip to content

Commit

Permalink
Fixed build errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
corentinaltepe committed May 30, 2022
1 parent 9930f57 commit 9d5d857
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/NLog.Loki.gRPC/LokiTarget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using Grpc.Net.Client;
using Logproto;
using NLog.Config;
using NLog.Layouts;
using NLog.Loki.gRPC.Model;
using NLog.Targets;
using static Logproto.Pusher;
Expand Down Expand Up @@ -34,7 +35,7 @@ protected override void InitializeTarget()
{
base.InitializeTarget();

_channel = GrpcChannel.ForAddress(RenderLogEvent(EndPoint, LogEventInfo.CreateNullEvent()));
_channel = GrpcChannel.ForAddress(RenderLogEvent(Endpoint, LogEventInfo.CreateNullEvent()));
_pusherClient = new PusherClient(_channel);
}

Expand Down

0 comments on commit 9d5d857

Please sign in to comment.