From 4ce9e0479ee14127f244e0e562e2157a9074a150 Mon Sep 17 00:00:00 2001 From: Timothy Schenk Date: Thu, 1 Feb 2024 10:20:25 +0100 Subject: [PATCH] chore: remove dot from log entry --- Continuity.AuthServer/ChannelSession.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Continuity.AuthServer/ChannelSession.cs b/Continuity.AuthServer/ChannelSession.cs index a8cfac9..b91d6bf 100644 --- a/Continuity.AuthServer/ChannelSession.cs +++ b/Continuity.AuthServer/ChannelSession.cs @@ -50,7 +50,7 @@ public class ChannelSession : TcpSession var amountOfReadBytes = cs.Read(buffer); if (amountOfReadBytes != buffer.Length) { - _logger.LogError("Amount of read bytes is not equal to buffer length."); + _logger.LogError("Amount of read bytes is not equal to buffer length"); } }