2 * Output and debugging functions
5 * Miguel de Icaza (miguel@novell.com)
7 * (C) 2006 Novell, Inc.
8 * Permission is hereby granted, free of charge, to any person obtaining
9 * a copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sublicense, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
16 * The above copyright notice and this permission notice shall be
17 * included in all copies or substantial portions of the Software.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 /* The current fatal levels, error is always fatal */
32 static GLogLevelFlags fatal
= G_LOG_LEVEL_ERROR
;
35 g_print (const gchar
*format
, ...)
39 va_start (args
, format
);
40 vprintf (format
, args
);
45 g_log_set_always_fatal (GLogLevelFlags fatal_mask
)
47 GLogLevelFlags old_fatal
= fatal
;
55 g_log_set_fatal_mask (const gchar
*log_domain
, GLogLevelFlags fatal_mask
)
58 * Mono does not use a G_LOG_DOMAIN currently, so we just assume things are fatal
59 * if we decide to set G_LOG_DOMAIN (we probably should) we should implement
66 g_logv (const gchar
*log_domain
, GLogLevelFlags log_level
, const gchar
*format
, va_list args
)
70 vasprintf (&msg
, format
, args
);
72 log_domain
!= NULL
? log_domain
: "",
73 log_domain
!= NULL
? ": " : "",
76 if (log_level
& fatal
){
84 g_log (const gchar
*log_domain
, GLogLevelFlags log_level
, const gchar
*format
, ...)
88 va_start (args
, format
);
89 g_logv (log_domain
, log_level
, format
, args
);
94 g_assertion_message (const gchar
*format
, ...)
98 va_start (args
, format
);
99 g_logv (G_LOG_DOMAIN
, G_LOG_LEVEL_ERROR
, format
, args
);