Skip to content

Instantly share code, notes, and snippets.

@Olousouzian
Created May 9, 2016 15:11
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Olousouzian/9e9fdfeaf0cd9477ce9ebf854034877f to your computer and use it in GitHub Desktop.
Save Olousouzian/9e9fdfeaf0cd9477ce9ebf854034877f to your computer and use it in GitHub Desktop.
Symfony tail -f color synthax.
tail -f app/logs/dev.log | awk '
/(request|app)\.INFO/ {print "\033[36m" $0 "\033[39m"}
/(request|app)\.WARNING/ {print "\033[33m" $0 "\033[39m"}
/(request|app)\.ERROR/ {print "\033[31m" $0 "\033[39m"}
/(request|app)\.CRITICAL/ {print "\033[31m" $0 "\033[39m"}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment