Disabling Logging of a Facility
To disable the logging of messages from a facility, include the
facilitynonestatement in the configuration. This statement is useful when, for example, you want to log messages that have the same severity level and belong to all but a few facilities. Instead of including a statement for each facility you want to log, you can include theanyseveritystatement and then afacilitynonestatement for each facility you do not want to log. For example, the following logs all messages at theerrorlevel or higher to the console, except for messages from thedaemonandkernelfacilities. Messages from those facilities are logged to the file/var/log/internalsinstead:[edit system syslog]console {any error;daemon none;kernel none;}file internals {daemon info;kernel info;}