mirror of
https://github.com/glest/glest-source.git
synced 2025-08-16 21:33:59 +02:00
- more logging to track down cold's issue
This commit is contained in:
@@ -1435,6 +1435,10 @@ int Socket::receive(void *data, int dataSize, bool tryReceiveUntilDataSizeMet) {
|
||||
|
||||
char *dataAsCharPointer = reinterpret_cast<char *>(data);
|
||||
int additionalBytes = receive(&dataAsCharPointer[bytesReceived], newBufferSize, tryReceiveUntilDataSizeMet);
|
||||
|
||||
if(SystemFlags::getSystemSettingType(SystemFlags::debugNetwork).enabled) SystemFlags::OutputDebug(SystemFlags::debugNetwork,"In [%s::%s Line: %d] WARNING, additionalBytes = %d\n",__FILE__,__FUNCTION__,__LINE__,additionalBytes);
|
||||
if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\nIn [%s::%s Line: %d] WARNING, additionalBytes = %d\n",__FILE__,__FUNCTION__,__LINE__,additionalBytes);
|
||||
|
||||
if(additionalBytes > 0) {
|
||||
bytesReceived += additionalBytes;
|
||||
}
|
||||
|
Reference in New Issue
Block a user