Right now, the contents of /etc/rsyslog.conf which control disposition of the named log messages looks like:
# Log anything (except mail) of level info or higher.
# Don't log private authentication messages!
*.info;mail.none;authpriv.none;cron.none;;kern.none /var/log/messages
Putting the following in front of that section correctly writes out the "named" messages to /var/log/named/named.log.
# Write named/bind messages to their own log file
:programname, isequal, "named" /var/log/named/named.log
The problem is that those "named" messages are still being written out to the /var/log/messages file. How would I modify the line that generates /var/log/messages to not write out "named" messages?
Note: This is rsyslog v5 as ships with RHEL/CentOS 6.
Addendum: The accepted answer from below is
# Write named/bind messages to their own log file, then discard (tilde)
:programname, isequal, "named" /var/log/named/named.log
:programname, isequal, "named" ~
http://www.rsyslog.com/doc/rsyslog_conf_filter.html