Skip to content
Snippets Groups Projects
Commit 849221de authored by Andreas Traczyk's avatar Andreas Traczyk Committed by Andreas Traczyk
Browse files

debug: adds endline to OutputDebugString

- adds endline to OutputDebugString that prints output visible in
  the Visual studio console

Change-Id: Ieeef71decce30665defe4b2595a66d582ad8aefa
Tuleap: #977
parent 797fa1ae
No related branches found
No related tags found
No related merge requests found
...@@ -50,7 +50,7 @@ RingDebug::print(const std::string& message, ...@@ -50,7 +50,7 @@ RingDebug::print(const std::string& message,
} }
/* screen it into VS debug console */ /* screen it into VS debug console */
OutputDebugString(wString.c_str()); OutputDebugString((wString + L"\n").c_str());
/* fire the event. */ /* fire the event. */
messageToScreen(ref new String(wString.c_str(), wString.length())); messageToScreen(ref new String(wString.c_str(), wString.length()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment