function Get-LogColor {
Param([Parameter(Position=0)]
[String]$LogEntry)
process {if($LogEntry.Contains("Found 0 proofs.")){Return "Red"}else{Return "Green"}}
}
Get-Content .\debug.log -wait | where {$_ -Like '*chia.harvester.harvester: INFO*'} | where {$_ -NotLike '*0 plots were*'} | ForEach {Write-Host -ForegroundColor (Get-LogColor $_) $_}
- код выше кидай в текстовый файл, расширение вместо .txt ставь ps1. И копируй в папку с логом "\.chia\mainnet\log" рядом к файлу debug.log. Потом правой кнопкой - Run with PowerShell. Чтобы скрипт работал, Log_level в конфиге должен быть INFO