<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#0050d0">
<big><font size="-1"><big><font face="Helvetica, Arial, sans-serif">How
do you do groups of failbacks? For example<br>
<br>
log { filter(f_filter1); destination(d_file1); };<br>
log { filter(f_filter1); destination(d_file2); }; &lt;-- log here only
if the above fails<br>
log { filter(f_filter2); destination(d_sql1); }; &lt;-- may include
messages from the above 2 lines<br>
log { filter(f_filter2); destination(d_sql2); }; &lt;-- log here only
if d_sql1 fails<br>
<br>
So, say lines 1 and 3 both fail, lines 2 and 3 should both start
working. If I put a fallback flag on d_file2 and d_sql2, and d_sql1
fails, d_sql2 wont kick in on matches that d_file1 is still taking.<br>
It seems like there should be a way to do "</font></big></font><font
 size="-1"><big><tt>log { destination(...) or destination(...); };</tt></big></font><font
 size="-1"><big><font face="Helvetica, Arial, sans-serif">", or "</font></big></font><font
 size="-1"><big><tt>log {...} or log {...};</tt></big></font><font
 size="-1"><big><font face="Helvetica, Arial, sans-serif">".<br>
<br>
</font></big></font></big>
</body>
</html>