
Look at syslogd and syslog.conf. That will let you define separate log files for various apps.bonito wrote:If I have to make them and set the machine to write to them manually can someone explain how I would do this?

Code: Select all
destination d_fw { file("/var/log/firewall"); };
filter f_fw { match("fw-"); };
log { source(kernsrc); filter(f_fw); destination(d_fw); };