Bitcoind
LogPrint() 輸出位置?
在哪裡可以查看原始碼
LogPrint()
中的語句生成的輸出日誌。bitcoind
PS:請不要將此與將
LogPrintf()
輸出記錄到debug.log
文件中的語句混淆。
LogPrint
並且LogPrintf
非常相似。注意定義:
#define LogPrintf(...) LogPrint(NULL, __VA_ARGS__)
LogPrint
’s 只會在您debug.log
啟用相應類別時出現。啟用對-debug
arg 有效。
-debug=mempool,net
將全部輸出LogPrint("mempool",...)
或輸出LogPrint("net",...)
到調試日誌,或者輸出到標準輸出(如果-printtoconsole
已啟用)。