Delphi RAD Berlin OutputDebugString 输出调试信息

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 输出调试信息
上一篇:在C#中将String转换成Enum:


下一篇:C++内存分区:堆、栈、*存储区、全局/静态存储区和常量存储区