[syslog-ng]Null Filter?

Jay Guerette syslog-ng@lists.balabit.hu
Fri, 14 Jan 2005 11:26:18 -0500


Filters are optional. A catchall should appear in your .conf before
all othe entries; and can look something like:

destination catchall {
        file(/var/log/catchall);
};
log {
        source(syslog);
        destination(catchall);
};

> I want a catch-all log destination and can't seem to find out how in the documentation or
> examples.
> 
> A log statement needs a filter paramter and a filter statement needs at least 1 parameter as well,
> so how can this be achived?
> 
> I want a filter that catches absolutely every possbile thing.