1.1 --- a/src/SDL_log.c Tue Dec 06 14:22:28 2016 -0700
1.2 +++ b/src/SDL_log.c Wed Dec 07 11:02:02 2016 -0800
1.3 @@ -335,7 +335,8 @@
1.4 if (!attachResult) {
1.5 attachError = GetLastError();
1.6 if (attachError == ERROR_INVALID_HANDLE) {
1.7 - OutputDebugString(TEXT("Parent process has no console\r\n"));
1.8 + /* This is expected when running from Visual Studio */
1.9 + /*OutputDebugString(TEXT("Parent process has no console\r\n"));*/
1.10 consoleAttached = -1;
1.11 } else if (attachError == ERROR_GEN_FAILURE) {
1.12 OutputDebugString(TEXT("Could not attach to console of parent process\r\n"));