Remove progress logging from buffer

This commit is contained in:
Henrik Rydgård 2013-11-29 17:10:13 +01:00
parent 197d010189
commit e9c25e5607

View File

@ -190,7 +190,6 @@ bool Buffer::ReadAllWithProgress(int fd, int knownSize, float *progress) {
memcpy(p, buf, retval);
total += retval;
*progress = (float)total / (float)knownSize;
ILOG("Progress: %f", *progress);
}
return true;
}