mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-04-30 02:37:49 +02:00
PrefetchStream: changed debug message
This commit is contained in:
parent
a8ea9554d0
commit
0641ccd6cf
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ namespace Utilities
|
||||||
m_cacheOffset = 0;
|
m_cacheOffset = 0;
|
||||||
m_cache = new byte[CacheSize];
|
m_cache = new byte[CacheSize];
|
||||||
int bytesRead = m_stream.Read(m_cache, 0, CacheSize);
|
int bytesRead = m_stream.Read(m_cache, 0, CacheSize);
|
||||||
System.Diagnostics.Debug.Print("[{0}] bytes read {1}", DateTime.Now.ToString("HH:mm:ss:ffff"), bytesRead);
|
System.Diagnostics.Debug.Print("[{0}] {1} bytes have been prefetched.", DateTime.Now.ToString("HH:mm:ss:ffff"), bytesRead);
|
||||||
this.Position = 0;
|
this.Position = 0;
|
||||||
if (bytesRead < CacheSize)
|
if (bytesRead < CacheSize)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue