| Enumerator | Value | Description |
|---|---|---|
| G_LOG_FLAG_RECURSION | 1 << 0 | |
| G_LOG_FLAG_FATAL | 1 << 1 | |
| G_LOG_LEVEL_ERROR | 1 << 2 | |
| G_LOG_LEVEL_CRITICAL | 1 << 3 | |
| G_LOG_LEVEL_WARNING | 1 << 4 | |
| G_LOG_LEVEL_MESSAGE | 1 << 5 | |
| G_LOG_LEVEL_INFO | 1 << 6 | |
| G_LOG_LEVEL_DEBUG | 1 << 7 | |
| G_LOG_LEVEL_MASK | ~(G_LOG_FLAG_RECURSION | G_LOG_FLAG_FATAL) |
| typedef void(* | GLogFunc |
| IMPORT_C guint | g_log_set_handler | ( | const gchar * | log_domain, |
| GLogLevelFlags | log_levels, | |||
| GLogFunc | log_func, | |||
| gpointer | user_data | |||
| ) | ||||
| IMPORT_C void | g_log_default_handler | ( | const gchar * | log_domain, |
| GLogLevelFlags | log_level, | |||
| const gchar * | message, | |||
| gpointer | unused_data | |||
| ) | ||||
| IMPORT_C void | g_log | ( | const gchar * | log_domain, |
| GLogLevelFlags | log_level, | |||
| const gchar * | format, | |||
| ... | ||||
| ) | ||||
| IMPORT_C void IMPORT_C void | g_logv | ( | const gchar * | log_domain, |
| GLogLevelFlags | log_level, | |||
| const gchar * | format, | |||
| va_list | args | |||
| ) | ||||
| IMPORT_C GLogLevelFlags | g_log_set_fatal_mask | ( | const gchar * | log_domain, |
| GLogLevelFlags | fatal_mask | |||
| ) | ||||
| IMPORT_C GLogLevelFlags | g_log_set_always_fatal | ( | GLogLevelFlags | fatal_mask | ) |
| G_GNUC_INTERNAL void | _g_log_fallback_handler | ( | const gchar * | log_domain, |
| GLogLevelFlags | log_level, | |||
| const gchar * | message, | |||
| gpointer | unused_data | |||
| ) | ||||
| IMPORT_C void | g_return_if_fail_warning | ( | const char * | log_domain, |
| const char * | pretty_function, | |||
| const char * | expression | |||
| ) | ||||
| IMPORT_C void | g_warn_message | ( | const char * | domain, |
| const char * | file, | |||
| int | line, | |||
| const char * | func, | |||
| const char * | warnexpr | |||
| ) | ||||
| IMPORT_C void | g_assert_warning | ( | const char * | log_domain, |
| const char * | file, | |||
| const int | line, | |||
| const char * | pretty_function, | |||
| const char * | expression | |||
| ) | ||||
| void | g_error | ( | const gchar * | format, |
| ... | ||||
| ) | [static] | |||
| void | g_message | ( | const gchar * | format, |
| ... | ||||
| ) | [static] | |||
| void | g_critical | ( | const gchar * | format, |
| ... | ||||
| ) | [static] | |||
| void | g_warning | ( | const gchar * | format, |
| ... | ||||
| ) | [static] | |||
| void | g_debug | ( | const gchar * | format, |
| ... | ||||
| ) | [static] | |||
| typedef void(* | GPrintFunc |
| IMPORT_C void | g_print | ( | const gchar * | format, |
| ... | ||||
| ) | ||||
| IMPORT_C void IMPORT_C GPrintFunc | g_set_print_handler | ( | GPrintFunc | func | ) |
| IMPORT_C void | g_printerr | ( | const gchar * | format, |
| ... | ||||
| ) | ||||
| IMPORT_C void IMPORT_C GPrintFunc | g_set_printerr_handler | ( | GPrintFunc | func | ) |