[srvx-commits] CVS: services srvx.conf.example,1.38,1.39
                
                Brought to you by:
                
                    entrope
                    
                
            
            
        
        
        
    | 
      
      
      From: Zoot <zo...@us...> - 2003-07-08 05:15:41
      
     | 
| Update of /cvsroot/srvx/services
In directory sc8-pr-cvs1:/tmp/cvs-serv5105
Modified Files:
	srvx.conf.example 
Log Message:
Support a new "std:" log destination; examples of valid target strings are "std:out", "std:err", and "std:N" where N is a valid file descriptor.
Index: srvx.conf.example
===================================================================
RCS file: /cvsroot/srvx/services/srvx.conf.example,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -r1.38 -r1.39
*** srvx.conf.example	8 Jul 2003 04:21:20 -0000	1.38
--- srvx.conf.example	8 Jul 2003 05:15:38 -0000	1.39
***************
*** 336,340 ****
      // specify how to log events regardless of their true facility, and
      // the severity * will match all severities for a facility.
!     // Log targets use a psuedo-URI syntax:  either "file:filename" or
      // "irc:#channel" (nicknames or server masks can be used instead
      // of channel names, but should be used with care).
--- 336,341 ----
      // specify how to log events regardless of their true facility, and
      // the severity * will match all severities for a facility.
!     // Log targets use a psuedo-URI syntax:  one of "file:filename",
!     // "std:[out|err|n]" where n is a valid file descriptor, or
      // "irc:#channel" (nicknames or server masks can be used instead
      // of channel names, but should be used with care).
***************
*** 346,350 ****
      // list a target to log it -- this is because it is very rarely
      // useful.
!     "*.*" "file:everything.log"; // does NOT suppress any defaults
      "*.override,staff" "irc:#big-brother"; // report all uses of staff commands
      "ChanServ.*" "file:chanserv.log"; // duplicates the default behavior
--- 347,351 ----
      // list a target to log it -- this is because it is very rarely
      // useful.
!     "*.*" ("std:out", "file:everything.log"); // does NOT suppress any defaults
      "*.override,staff" "irc:#big-brother"; // report all uses of staff commands
      "ChanServ.*" "file:chanserv.log"; // duplicates the default behavior
 |