Home | History | Annotate | Line # | Download | only in slapd
      1 /*	$NetBSD: slap-cfglog.h,v 1.2 2025/09/05 21:16:25 christos Exp $	*/
      2 
      3 /* slap-cfglog.h - logging configuration */
      4 /* $OpenLDAP$ */
      5 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
      6  *
      7  * Copyright 1998-2024 The OpenLDAP Foundation.
      8  * All rights reserved.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted only as authorized by the OpenLDAP
     12  * Public License.
     13  *
     14  * A copy of this license is available in the file LICENSE in the
     15  * top-level directory of the distribution or, alternatively, at
     16  * <http://www.OpenLDAP.org/license.html>.
     17  */
     18 
     19 #ifndef CFGLOG_H
     20 #define CFGLOG_H
     21 
     22 enum {
     23 	CFG_LOGLEVEL = 1,
     24 	CFG_LOGFILE,
     25 	CFG_LOGFILE_ROTATE,
     26 	CFG_LOGFILE_ONLY,
     27 	CFG_LOGFILE_FORMAT
     28 };
     29 
     30 extern ConfigDriver config_logging;
     31 
     32 #endif /* CFGLOG_H */
     33