Files
plugin-helper/docs/notes/windows-logs.md
T
2026-07-16 17:00:07 -07:00

12 lines
281 B
Markdown

```powershell
cd C:\Program Files (x86)\Steam\steamapps\common\Beat Saber\logs>
Get-Content .\_latest.log -Wait -Tail 50
```
`-Tail 50` shows the last 50 lines; `-Wait` keeps following new output (like `tail -f`).
Shorter alias:
```powershell
gc .\_latest.log -Wait -Tail 50
```