File: /volume1/@appstore/SynologyPhotos/etc/syslog-ng.conf
destination d_synofoto_logfile {
file("/var/packages/SynologyPhotos/var/log/synofoto.log");
};
destination d_synofoto_action_logfile {
file("/var/packages/SynologyPhotos/var/log/synofoto-action.log");
};
destination d_synofoto_delete_detail_logfile {
file("/var/packages/SynologyPhotos/var/log/synofoto-delete-detail.log");
};
filter f_synofoto_process {
program(^synofoto-) or
program(synoscgi_SYNO.Foto)
};
filter f_synofoto_loglevel {
level(info..emerg);
};
filter f_synofoto_facility_1_and_2 {
facility(local1) or
facility(local2)
};
log {
source(src);
filter(f_synofoto_facility_1_and_2);
filter(f_synofoto_process);
filter(f_synofoto_loglevel);
destination(d_synofoto_logfile);
};
log {
source(src);
filter(f_local2);
filter(f_synofoto_process);
filter(f_synofoto_loglevel);
destination(d_synofoto_action_logfile);
};
log {
source(src);
filter(f_local3);
filter(f_synofoto_process);
filter(f_synofoto_loglevel);
destination(d_synofoto_delete_detail_logfile);
};