2011-07-22 55 views
0

我已經在Google中搜索,但還沒有找到任何方法從XCODE Debugger輸出中刪除時間戳。從Xcode調試器輸出中刪除時間戳

{ 
    [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

停止大喊! – Kaj

+0

@satya,寫在CAPS被認爲粗魯。閱讀[這裏](http://in.answers.yahoo.com/question/index?qid=20070718202452AAHIRQL)。請遵守標準規則。 –

+0

@satya我試圖清理你的問題,以幫助你獲得更好的答案。請閱讀[faq](http://stackoverflow.com/faq),瞭解有關在此發佈問題的指導。 –

回答

1

您可以使用#define和一些C99宏魔法,如here所述來解決這個問題。使用這種技術,我能夠實現我想要的日誌記錄功能,因爲它是一種解決方案。