25 Nov
2011
25 Nov
'11
8:22 p.m.
On Friday, November 25, 2011 17:02 CET, "Lay, James" <james.lay@wincofoods.com> wrote:
Topic says it. I think I have a pretty simple layout:
log {
source(s_local);
filter(f_firewall);
destination(d_file);
destination(fifo);
};
Can I change this to:
log {
source(s_local);
destination(d_file);
filter(f_firewall);
destination(fifo);
};
? Will this log to file, then filter, then go to fifo? Thanks and hope this isn't a silly question...I read this from the admin guide:
Yes, it should work that way. Regards, Robert
Log statements are processed in the order they appear in the configuration file, thus the order of log paths may influence what happens to a message, especially when using filters and log flags.
So I'm hoping that is the case. Thank you.
James