chore: remove logs

This commit is contained in:
2022-05-28 11:58:54 +04:00
parent 62d3f7acdd
commit 06dd23ee8d
-2
View File
@@ -182,8 +182,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);
_data = newData;