r25068: Older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for every opcode on the
[Samba.git] / source / lib / ldb / common / ldb_debug.c
blob2548a5495aae3e4e9857af6610e3c8b36886d44e
1 /*
2 ldb database library
4 Copyright (C) Andrew Tridgell 2004
6 ** NOTE! The following LGPL license applies to the ldb
7 ** library. This does NOT imply that all of Samba is released
8 ** under the LGPL
10 This library is free software; you can redistribute it and/or
11 modify it under the terms of the GNU Lesser General Public
12 License as published by the Free Software Foundation; either
13 version 2 of the License, or (at your option) any later version.
15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public
21 License along with this library; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 * Name: ldb
28 * Component: ldb debug
30 * Description: functions for printing debug messages
32 * Author: Andrew Tridgell
35 #include "includes.h"
36 #include "ldb/include/includes.h"
39 this allows the user to choose their own debug function
41 int ldb_set_debug(struct ldb_context *ldb,
42 void (*debug)(void *context, enum ldb_debug_level level,
43 const char *fmt, va_list ap),
44 void *context)
46 ldb->debug_ops.debug = debug;
47 ldb->debug_ops.context = context;
48 return 0;
52 debug function for ldb_set_debug_stderr
54 static void ldb_debug_stderr(void *context, enum ldb_debug_level level,
55 const char *fmt, va_list ap) PRINTF_ATTRIBUTE(3,0);
56 static void ldb_debug_stderr(void *context, enum ldb_debug_level level,
57 const char *fmt, va_list ap)
59 if (level <= LDB_DEBUG_WARNING) {
60 vfprintf(stderr, fmt, ap);
65 convenience function to setup debug messages on stderr
66 messages of level LDB_DEBUG_WARNING and higher are printed
68 int ldb_set_debug_stderr(struct ldb_context *ldb)
70 return ldb_set_debug(ldb, ldb_debug_stderr, ldb);
74 log a message
76 void ldb_debug(struct ldb_context *ldb, enum ldb_debug_level level, const char *fmt, ...)
78 va_list ap;
79 if (ldb->debug_ops.debug == NULL) {
80 ldb_set_debug_stderr(ldb);
82 va_start(ap, fmt);
83 ldb->debug_ops.debug(ldb->debug_ops.context, level, fmt, ap);
84 va_end(ap);
89 log a message, and set the ldb error string to the same message
91 void ldb_debug_set(struct ldb_context *ldb, enum ldb_debug_level level,
92 const char *fmt, ...)
94 va_list ap;
95 char *msg;
96 va_start(ap, fmt);
97 msg = talloc_vasprintf(ldb, fmt, ap);
98 va_end(ap);
99 if (msg != NULL) {
100 ldb_set_errstring(ldb, msg);
101 ldb_debug(ldb, level, "%s", msg);
103 talloc_free(msg);