从Xcode调试器输出中删除时间戳

时间:2011-07-22 06:57:48

标签: objective-c xcode

我在谷歌搜索过但没有找到任何方法从XCODE Debugger的输出中删除时间戳。

{
  [Session started at 2011-07-22 12:30:17 +0530.]
  ***2011-07-22 12:30:17.435 obj-compose-obj-c-1[3070:10b]*** *** _NSAutoreleaseNoPool(): Object 0x104a20 of class NSCFDictionary autoreleased with no pool in place - just leaking
  Stack: (0x946eef4f 0x945fb432)
  ***2011-07-22 12:30:17.437 obj-compose-obj-c-1[3070:10b]***  1 fl I am the best tire from MRF 

  The Debugger has exited with status 0.

 }

我想删除它,因为我需要一个明确的输出。 实际输出有些混乱。

1 个答案:

答案 0 :(得分:1)

您可以使用#define和一些C99宏魔法,如here所述来解决此问题。使用这种技术,我能够实现我想要的日志记录功能,作为解决方案的一部分。