2 Unix SMB/CIFS implementation.
3 Copyright (C) Andrew Tridgell 2003
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #define DBGC_CLASS DBGC_TEVENT
25 static void samba_tevent_debug(void *context
,
26 enum tevent_debug_level level
,
28 va_list ap
) PRINTF_ATTRIBUTE(3,0);
30 static void samba_tevent_debug(void *context
,
31 enum tevent_debug_level level
,
38 case TEVENT_DEBUG_FATAL
:
41 case TEVENT_DEBUG_ERROR
:
44 case TEVENT_DEBUG_WARNING
:
47 case TEVENT_DEBUG_TRACE
:
52 if (CHECK_DEBUGLVL(samba_level
)) {
53 const char *name
= (const char *)context
;
57 ret
= vasprintf(&message
, fmt
, ap
);
63 name
= "samba_tevent";
66 DEBUG(samba_level
, ("%s: %s", name
, message
));
71 void samba_tevent_set_debug(struct tevent_context
*ev
, const char *name
)
73 void *p
= discard_const(name
);
74 tevent_set_debug(ev
, samba_tevent_debug
, p
);
77 struct tevent_context
*samba_tevent_context_init(TALLOC_CTX
*mem_ctx
)
79 struct tevent_context
*ev
;
81 ev
= tevent_context_init(mem_ctx
);
83 samba_tevent_set_debug(ev
, NULL
);