mongoc_log_func_t

extern (C) extern (C)
alias mongoc_log_func_t = void function
(,
const(char)* log_domain
,
const(char)* message
,
void* user_data
)

Detailed Description

mongoc log func t

@log_level: The level of the log message. @log_domain: The domain of the log message, such as "client". @message: The message generated. @user_data: User data provided to mongoc_log_set_handler().

This function prototype can be used to set a custom log handler for the libmongoc library. This is useful if you would like to show them in a user interface or alternate storage.

Meta