Delphi RAD Berlin OutputDebugString 输出调试信息

时间:2021-07-10 05:43:23
Delphi RAD Berlin Event Log.
OutputDebugString 输出调试信息,仅在win VCL下可以用。
OutputDebugString(PChar('helloword'));
调试窗口输出
delphi FireMonkey 下用
Log.d('debugging');

可用于Android,IOS程序调试!这样在断点调试的时候非常方便!

log.TimeStamp('run');
log.TimeStamp('run');
log.TimeStamp('run');

记录时间,分,秒,毫秒,很方便调试语句运行时长。

http://docwiki.embarcadero.com/Libraries/XE6/en/FMX.Types.Log.d

 unit FMX.Types;

To copy text in the Event Log:
use Ctrl-C or the Edit>Copy command. Delphi RAD Berlin OutputDebugString 输出调试信息