From 06dd23ee8da65b9bf572b511d171e1e771b973e9 Mon Sep 17 00:00:00 2001 From: Edmand46 Date: Sat, 28 May 2022 11:58:54 +0400 Subject: [PATCH] chore: remove logs --- Ragon.Common/Protocol/RagonSerializer.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Ragon.Common/Protocol/RagonSerializer.cs b/Ragon.Common/Protocol/RagonSerializer.cs index fd4e48a..8aa34c6 100644 --- a/Ragon.Common/Protocol/RagonSerializer.cs +++ b/Ragon.Common/Protocol/RagonSerializer.cs @@ -181,8 +181,6 @@ namespace Ragon.Common { if (_offset + lenght < _data.Length) return; - - Console.WriteLine("Resize: " + (_data.Length + 512)); var newData = new byte[_data.Length * 2]; Buffer.BlockCopy(_data, 0, newData, 0, _data.Length);