Before you start debugging, we advise you to use our Harvest Inspector. If the inspector finds many errors, follow the steps in this guide to improve your farming.
C:\Users\<username>\.chia\mainnet\config
~/.chia/mainnet/log/config
/Users/<username>/.chia/mainnet/config
Now you can see detailed information in your Chia debug log, which is found in the chia folder.
C:\Users\<username>\.chia\mainnet\log\debug.log
~/.chia/mainnet/log/debug.log
/Users/<username>/.chia/mainnet/log/debug.log
A complete list of logging messages can be found here: https://github.com/Chia-Network/chia-blockchain/wiki/Logging-Messages-Reference
Scanning your debug log with tail | grep
in PowerShell is perhaps the easiest way to aggregate the information you are looking for.
For monitoring your harvester timing, for example, use
Get-Content -Path “~\.chia\mainnet\log\debug.log” -Wait | Select-String -Pattern “found”
And for finding errors, use
Get-Content -Path “~\.chia\mainnet\log\debug.log” | Select-String -Pattern “error”
Also you can use third-party tools to check your logs. Use at your own risk and consult our security page. https://github.com/kubec/chia-log-analyzer