Created
May 9, 2016 15:11
-
-
Save Olousouzian/9e9fdfeaf0cd9477ce9ebf854034877f to your computer and use it in GitHub Desktop.
Symfony tail -f color synthax.
This file contains 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
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