Actually removed all OutputDebugStringA calls except in Log_PrintFVarArgs

This commit is contained in:
PS 2021-04-12 21:34:05 -10:00
parent 495e760306
commit 692dcc81b3
3 changed files with 22 additions and 18 deletions

View File

@ -207,7 +207,7 @@ Win32SerialPort_Write(HANDLE PortHandle, gs_data Buffer)
Success = (BytesWritten == Buffer.Size); Success = (BytesWritten == Buffer.Size);
if (!Success) if (!Success)
{ {
OutputDebugString("Error: Entire buffer not written.\n"); Log_Error(GlobalLogBuffer, "Error: Entire buffer not written.\n");
} }
} }
else else

View File

@ -245,11 +245,11 @@ Win32SocketPeek(platform_socket_manager* Manager, platform_socket* Socket)
char Temp[4]; char Temp[4];
u32 TempSize = 4; u32 TempSize = 4;
//OutputDebugString("Pre Peek..."); //Log_Message(GlobalLogBuffer, "Pre Peek...");
//s32 BytesQueued = recv(*Win32Sock, Temp, TempSize, Flags); //s32 BytesQueued = recv(*Win32Sock, Temp, TempSize, Flags);
u_long BytesQueued = 0; u_long BytesQueued = 0;
ioctlsocket(*Win32Sock, FIONREAD, &BytesQueued); ioctlsocket(*Win32Sock, FIONREAD, &BytesQueued);
//OutputDebugString("Post Peek\n"); //Log_Message(GlobalLogBuffer, "Post Peek\n");
if (BytesQueued != SOCKET_ERROR) if (BytesQueued != SOCKET_ERROR)
{ {
@ -327,7 +327,7 @@ Win32SocketSend(platform_socket_manager* Manager, platform_socket* Socket, u32 A
s32 LengthSent = sendto(*Win32Sock, (char*)Data.Memory, Data.Size, Flags, (sockaddr*)&SockAddress, sizeof(sockaddr_in)); s32 LengthSent = sendto(*Win32Sock, (char*)Data.Memory, Data.Size, Flags, (sockaddr*)&SockAddress, sizeof(sockaddr_in));
//OutputDebugString("Attempting To Send Network Data: "); //Log_Message(GlobalLogBuffer, "Attempting To Send Network Data: ");
if (LengthSent == SOCKET_ERROR) if (LengthSent == SOCKET_ERROR)
{ {
s32 Error = WSAGetLastError(); s32 Error = WSAGetLastError();
@ -338,7 +338,7 @@ Win32SocketSend(platform_socket_manager* Manager, platform_socket* Socket, u32 A
// NOTE(PS): This covers non-blocking sockets // NOTE(PS): This covers non-blocking sockets
// In this case the message should be tried again // In this case the message should be tried again
LengthSent = 0; LengthSent = 0;
//OutputDebugString("Not sent, buffered\n"); //Log_Message(GlobalLogBuffer, "Not sent, buffered\n");
}break; }break;
case WSAECONNABORTED: case WSAECONNABORTED:
@ -348,8 +348,8 @@ Win32SocketSend(platform_socket_manager* Manager, platform_socket* Socket, u32 A
{ {
if (CloseSocket(Manager, Socket)) if (CloseSocket(Manager, Socket))
{ {
Log_Error(GlobalLogBuffer, "Error: %d\n", Error);
Error = 0; Error = 0;
OutputDebugString("Error\n");
} }
}break; }break;
@ -358,7 +358,7 @@ Win32SocketSend(platform_socket_manager* Manager, platform_socket* Socket, u32 A
} }
else else
{ {
OutputDebugString("Sent\n"); Log_Message(GlobalLogBuffer, "Sent\n");
} }
return LengthSent; return LengthSent;
@ -397,23 +397,28 @@ Win32Socket_SendTo(platform_socket_handle SocketHandle, u32 Address, u32 Port, c
s32 LengthSent = sendto(Socket->Socket, Buffer, BufferLength, Flags, (sockaddr*)&SockAddress, sizeof(sockaddr_in)); s32 LengthSent = sendto(Socket->Socket, Buffer, BufferLength, Flags, (sockaddr*)&SockAddress, sizeof(sockaddr_in));
OutputDebugString("Attempting To Send Network Data: "); Log_Message(GlobalLogBuffer, "Attempting To Send Network Data: ");
if (LengthSent == SOCKET_ERROR) if (LengthSent == SOCKET_ERROR)
{ {
s32 Error = WSAGetLastError(); s32 Error = WSAGetLastError();
OutputDebugString("Error\n"); switch (Error)
if (Error == 10051)
{ {
} case WSAENETUNREACH:
else
{ {
// TODO(Peter): :ErrorLogging Log_Message(GlobalLogBuffer,
"Non Critical Error: WSAENETUNREACH \n");
} break;
default:
{
Log_Error(GlobalLogBuffer, "Error: %d \n", Error);
InvalidCodePath; InvalidCodePath;
} break;
} }
} }
else else
{ {
OutputDebugString("Sent\n"); Log_Message(GlobalLogBuffer, "Sent\n");
} }
return LengthSent; return LengthSent;

View File

@ -43,8 +43,7 @@ Error Code: %d\n
DEBUG_PRINT(Win32DebugPrint) DEBUG_PRINT(Win32DebugPrint)
{ {
Assert(IsNullTerminated(Message)); Log_Message(GlobalLogBuffer, "%S", Message);
OutputDebugStringA(Message.Str);
} }
#define PrintLastError() PrintLastError_(__FILE__, __LINE__) #define PrintLastError() PrintLastError_(__FILE__, __LINE__)