This one is nice to check if the folder is getting any new log files.
while true; do find . -type f -name "*.txt" | head -1 | xargs ls -l ; sleep 60; done