More useful logging

This commit is contained in:
Michael Bucari-Tovo 2022-05-15 09:56:46 -06:00
parent 0ff8da2cf0
commit c9e850515e
5 changed files with 22 additions and 7 deletions

View file

@ -221,6 +221,7 @@ namespace AaxDecrypter
var buff = new byte[DOWNLOAD_BUFF_SZ];
do
{
Thread.Sleep(5);
var bytesRead = _networkStream.Read(buff, 0, DOWNLOAD_BUFF_SZ);
_writeFile.Write(buff, 0, bytesRead);