Bitcoind

LogPrint() 輸出位置?

  • October 26, 2015

在哪裡可以查看原始碼LogPrint()中的語句生成的輸出日誌。bitcoind

PS:請不要將此與將LogPrintf()輸出記錄到debug.log文件中的語句混淆。

LogPrint並且LogPrintf非常相似。

注意定義:#define LogPrintf(...) LogPrint(NULL, __VA_ARGS__)

LogPrint’s 只會在您debug.log啟用相應類別時出現。啟用對-debugarg 有效。

-debug=mempool,net將全部輸出LogPrint("mempool",...)或輸出LogPrint("net",...)到調試日誌,或者輸出到標準輸出(如果-printtoconsole已啟用)。

引用自:https://bitcoin.stackexchange.com/questions/41013