【Bitcoin Core系列】查看日志
2018-12-27 本文已影响8人
周宇盛
Linux版本下,日志默认保存在 ~/.bitcoin/debug.log
,如果配置了datadir
,则保存在更改后的目录下的debug.log
。
以下三种命令,debug信息以不同的途径输出:
命令 | 终端 | debug.log |
---|---|---|
bitcoind |
√ | √ |
bitcoind -daemon |
× | √ |
bitcoind -printtoconsole |
√ | × |
通过 tail -f debug.log
可以实时查看日志动态,如果配置了datadir
,注意先cd
到配置后的目录。