[olug] verbose logging removed from BIND - Why?
    Obi-Wan 
    obiwan at jedi.com
       
    Thu Feb 14 16:53:32 UTC 2008
    
    
  
> Anyone have insight as to why BIND removed the more verbose logging from
> later versions, that was included in previous versions?
What sort of verbose logging, and from which version?  I still get
pretty verbose debugging output in the categories of my choosing
from 9.3.3 using the following syntax in the config file:
logging {
  channel "default" {
    file "/opt/incontrol/log/dns-default.log" versions 10 size 1m;
    severity info;
    print-category yes;
    print-time yes;
  };
  channel "xfer" {
    file "/opt/incontrol/log/dns-xfer.log" versions 10 size 1m;
    severity debug;
    print-category yes;
    print-time yes;
  };
  channel "security" {
    file "/opt/incontrol/log/dns-security.log" versions 10 size 1m;
    severity info;
    print-category yes;
    print-time yes;
  };
  channel "query" {
    file "/opt/incontrol/log/dns-query.log" versions 10 size 3m;
    severity debug;
    print-category yes;
    print-time yes;
  };
  channel "ddns" {
    file "/opt/incontrol/log/dns-ddns.log" versions 9 size 1m;
    severity info;
    print-category yes;
    print-time yes;
  };
 category "general" {
   "default";
 };
 category "queries" {
   "query";
 };
 category "security" {
   "security";
 };
 category "xfer-out" {
   "xfer";
 };
 category "xfer-in" {
   "xfer";
 };
 category "update" {
   "ddns";
 };
 category "config" {
   "default";
 };
};
-- 
Ben "Obi-Wan" Hollingsworth                             obiwan at jedi.com
   The stuff of earth competes for the allegiance I owe only to the
     Giver of all good things, so if I stand, let me stand on the
       promise that You will pull me through.  -- Rich Mullins
    
    
More information about the OLUG
mailing list