Commit 7914725bfcdac675447c2d7effc2e225d2dbc009

Sam Lantinga 2017-12-04T20:26:09

Removed spurious debug output

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/SDL_log.c b/src/SDL_log.c
index 2deb3ac..1502cb3 100644
--- a/src/SDL_log.c
+++ b/src/SDL_log.c
@@ -357,7 +357,6 @@ SDL_LogOutput(void *userdata, int category, SDL_LogPriority priority,
 
                         if (GetConsoleMode(stderrHandle, &consoleMode) == 0) {
                             /* WriteConsole fails if the output is redirected to a file. Must use WriteFile instead. */
-                            OutputDebugString(TEXT("Console ouput is being redirected\r\n"));
                             consoleAttached = 2;
                         }
                 }