Hi there. The current log is in /Data/currentlog.config. Previous logs are saved in curretlog.config.1, currentlog.config.2, ...
Keep in mind that the logs are not kept forever. The log settings are stored in /log4net.config. The default settings for log file size and number of backups are:
<maxSizeRollBackups value="3" />
<maximumFileSize value="800KB" />
If you have a lot of activity in your log files, you may also want to change the following setting to "WARN" or "ERROR" to reduce the number of events being logged:
<level value="INFO" />
If you make changes to this file, you'll want to touch web.config in order for the site to pick up the new settings.
Hope that helps.
Jamie