Skip to content

Commit

Permalink
Add code to output to VS console (#290)
Browse files Browse the repository at this point in the history
Signed-off-by: José Simões <jose.simoes@eclo.solutions>
  • Loading branch information
josesimoes authored May 4, 2017
1 parent 3c99869 commit fbdfde3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/CLR/Diagnostics/Info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,10 @@ int CLR_Debug::PrintfV( const char *format, va_list arg )

Emit( buffer, (int)iBuffer );

#if defined WIN32
OutputDebugStringA(buffer);
#endif

return (int)iBuffer;
}

Expand Down

0 comments on commit fbdfde3

Please sign in to comment.