You can use the Linux "find" command for that, but be aware, that this will find all log files, too. Many files are being modified continuously. Maybe you should consider to apply the command to certain directories or subdirectories only.
Example:
# find ./* -mtime -4
will find all files that are younger than 4 days.
# man find
explains find in more detail.