When debugging, if you are tailing a log file that has way too much output, don't forget about the trusty grep:
tail -f log.txt|grep "stuff I care about"
or:
tail -f log.txt|grep -v "stuff I don't care about"
When debugging, if you are tailing a log file that has way too much output, don't forget about the trusty grep:
tail -f log.txt|grep "stuff I care about"
or:
tail -f log.txt|grep -v "stuff I don't care about"