debugger: prefix debug output with 'Debug Output: ' string

git-svn-id: trunk@42105 -
This commit is contained in:
paul 2013-07-16 07:48:09 +00:00
parent d63a40c020
commit 7d31d49396

View File

@ -2091,7 +2091,7 @@ var
InLogWarning := True;
Delete(Warning, 1, Length(LogWarning));
Warning := MakePrintable(UnEscapeBackslashed(Trim(Warning), [uefOctal, uefTab, uefNewLine]));
DoDbgEvent(ecOutput, etOutputDebugString, Warning);
DoDbgEvent(ecOutput, etOutputDebugString, 'Debug Output: ' + Warning);
end;
if InLogWarning then
FLogWarnings := FLogWarnings + Warning + LineEnding;