Created
January 31, 2025 17:05
-
-
Save smeech/69008439198a2a387e7fb4e04b0f4127 to your computer and use it in GitHub Desktop.
[Monitor Espanso log] Continuously without repeated typing of `espanso log`. #espanso #bash #powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Routines to follow the Espanso log for problems, without having to | |
# type `espanso log` every time something goes wrong. | |
# Filters out routine messages. | |
# Linux | |
tail -F ~/.cache/espanso/espanso.log | grep -v "INFO" | |
# Windows | |
Get-Content "$env:LOCALAPPDATA\espanso\espanso.log" -Wait | Where-Object { $_ -notmatch "INFO" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I find this useful to run (from an Espanso trigger of course) in a terminal window, during development of Espanso triggers.