In NavigateTo, line 502 calls WriteLog with a -NoNewline switch, but WriteLog doesn't support this switch. So the output (error codes) are displayed on the next line instead of next to the URL that they are associated with. In my environment, I resolved this by changing this line to a Write-Host instead of WriteLog since it's not changing colors.
In
NavigateTo
, line 502 callsWriteLog
with a-NoNewline
switch, butWriteLog
doesn't support this switch. So the output (error codes) are displayed on the next line instead of next to the URL that they are associated with. In my environment, I resolved this by changing this line to aWrite-Host
instead ofWriteLog
since it's not changing colors.