Xcode8 控制台列印資料不全

2021-07-25 16:48:10 字數 458 閱讀 7878

最近公升級xcode8,開發工具出現了,控制台log資料不完整,經常列印一半,就沒有了,經過查詢一番終於找到了解決辦法!

解決辦法:巨集定義去log日誌資料,把nslog換成print

#ifdef debug

#define dlog( s, ... ) printf("class: <%p %s:(%d) > method: %s \n%s\n", self, [[[nsstring stringwithutf8string:__file__] lastpathcomponent] utf8string], __line__, __pretty_function__, [[nsstring stringwithformat:(s), ##__va_args__] utf8string] )

#else

#define dlog( s, ... )

#endif

Xcode8控制台輸出警告

公升級xcode8後執行專案,控制台會報出警告,如下所示 2016 09 21 14 11 46.415607 datalocaled 1113 57765 subsystem com uikit,category hideventincoming,enable level 0,persist le...

JS控制台列印

今天在看jq的 時看到這樣乙個 console.warn nothing selected,can t validate,returning nothing 單獨執行,居然在控制台列印出了nothing selected,can t validate,returning nothing,豁然開朗,既...

nodejs之控制台列印

直接輸出引號中的資訊 onsole.log log資訊 依次輸出所有字串 console.log s first second 輸出結果 first second 將物件轉換為普通字串後執行 console.log s guoyansi 輸出結果 guoyansi 將字串作為數值進行轉換 conso...