Mercurial > pidgin.yaz
annotate src/debug.c @ 6516:7c14b35bc984
[gaim-migrate @ 7033]
reversed the last yahoo info patch and applied this one instead, which includes
msn info support. ChipX86: if this messes you up, tell me and i'll switch it
back.
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 20 Aug 2003 02:45:31 +0000 |
parents | 565339a6eb86 |
children | acc4376ce062 |
rev | line source |
---|---|
5212 | 1 /** |
2 * @file debug.c Debug API | |
3 * @ingroup core | |
4 * | |
5 * gaim | |
6 * | |
7 * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org> | |
6483
565339a6eb86
[gaim-migrate @ 6997]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
8 * |
5212 | 9 * This program is free software; you can redistribute it and/or modify |
10 * it under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or | |
12 * (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
22 */ | |
23 #include "debug.h" | |
24 #include <stdlib.h> | |
25 #include <glib.h> | |
26 | |
27 static GaimDebugUiOps *debug_ui_ops = NULL; | |
28 | |
29 void | |
30 gaim_debug_vargs(GaimDebugLevel level, const char *category, | |
31 const char *format, va_list args) | |
32 { | |
33 GaimDebugUiOps *ops; | |
34 | |
35 g_return_if_fail(level != GAIM_DEBUG_ALL); | |
36 g_return_if_fail(format != NULL); | |
37 | |
38 ops = gaim_get_debug_ui_ops(); | |
39 | |
40 if (ops != NULL && ops->print != NULL) | |
41 ops->print(level, category, format, args); | |
42 } | |
43 | |
44 void | |
45 gaim_debug(GaimDebugLevel level, const char *category, | |
46 const char *format, ...) | |
47 { | |
48 va_list args; | |
49 | |
50 g_return_if_fail(level != GAIM_DEBUG_ALL); | |
51 g_return_if_fail(format != NULL); | |
52 | |
53 va_start(args, format); | |
54 gaim_debug_vargs(level, category, format, args); | |
55 va_end(args); | |
56 } | |
57 | |
58 void | |
59 gaim_set_debug_ui_ops(GaimDebugUiOps *ops) | |
60 { | |
61 debug_ui_ops = ops; | |
62 } | |
63 | |
64 GaimDebugUiOps * | |
65 gaim_get_debug_ui_ops(void) | |
66 { | |
67 return debug_ui_ops; | |
68 } |