Advertisement
smeech

Monitor Espanso log

Jan 9th, 2025 (edited)
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.30 KB | None | 0 0
  1. # Routines to follow the Espanso log for problems, without having to
  2. # type `espanso log` every time something goes wrong:
  3.  
  4. # Linux
  5. tail -F ~/.cache/espanso/espanso.log | grep -v "INFO"
  6.  
  7. # Windows
  8. Get-Content "$env:LOCALAPPDATA\espanso\espanso.log" -Wait | Where-Object { $_ -notmatch "INFO" }
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement