Find log files modified in last 5 min.
find / -cmin -5 -type f -name "*.log"
For example I used this to find the Akeneo daemon log so I could tail it for debugging.
tail -100f /var/log/akeneo_daemon.err.log
Find log files modified in last 5 min.
find / -cmin -5 -type f -name "*.log"
For example I used this to find the Akeneo daemon log so I could tail it for debugging.
tail -100f /var/log/akeneo_daemon.err.log