Function

GLiblog_set_handler_full

since: 2.46

Declaration

guint
g_log_set_handler_full (
  const gchar* log_domain,
  GLogLevelFlags log_levels,
  GLogFunc log_func,
  gpointer user_data,
  GDestroyNotify destroy
)

Description

Like g_log_set_handler(), but takes a destroy notify for the user_data.

This has no effect if structured logging is enabled; see Using Structured Logging.

Available since: 2.46

This method is renamed to g_log_set_handler() in language bindings

Parameters

log_domain

Type: const gchar*

The log domain, or NULL for the default "" application domain.

The argument can be NULL.
The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.
log_levels

Type: GLogLevelFlags

The log levels to apply the log handler for. To handle fatal and recursive messages as well, combine the log levels with the GLogLevelFlags and GLogLevelFlags bit flags.

log_func

Type: GLogFunc

The log handler function.

user_data

Type: gpointer

Data passed to the log handler.

The argument can be NULL.
The data is owned by the caller of the function.
destroy

Type: GDestroyNotify

Destroy notify for user_data, or NULL

Return value

Type: guint

The ID of the new handler.