Commit a5c9e672 by Jamie Madill Committed by Commit Bot

Add newline when using OutputDebugStringA logging.

Prior changes had made it so we no longer were spacing out the output correctly. Bug: None Change-Id: Icf81b579271f2b4c8fa5a1d90d323dc062f23585 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2507635Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent a653a9ba
...@@ -276,6 +276,7 @@ void Trace(LogSeverity severity, const char *message) ...@@ -276,6 +276,7 @@ void Trace(LogSeverity severity, const char *message)
# endif // !defined(ANGLE_ENABLE_DEBUG_TRACE_TO_DEBUGGER) # endif // !defined(ANGLE_ENABLE_DEBUG_TRACE_TO_DEBUGGER)
{ {
OutputDebugStringA(str.c_str()); OutputDebugStringA(str.c_str());
OutputDebugStringA("\n");
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment