> redef notice_action_filters += {
> WeirdActivity, ContentGap = ignore_notice,
> };
Along with the scoping issues that others have discussed, there's
a syntax problem here (which explains your follow-on problem). The
above needs to be:
redef notice_action_filters += {
[[Weird::WeirdActivity, Weird::ContentGap]] = ignore_notice,
};
- Vern