No, ILIAS does not support creating daily logfiles by itself. Have a look at logrotate for the classic solution for rotating (and potentially compressing) log files in Linux: https://linux.die.net/man/8/logrotate
Here is an example for a config file for logrotate (your path may be different):
Here is an example for a config file for logrotate (your path may be different):
/var/iliasdata/ilias/ilias.log {
daily
rotate 7
missingok
compress
delaycompress
}