Watching log files is useful for debugging.
For most terminals, it's:
tail -f /log/php/log.error
But Powershell, it's:
Get-Content -Path "C:\php\log.error" -Wait
via https://stackoverflow.com/questions/4426442/unix-tail-equivalent-command-in-windows-powershell