pjsua_reconfigure_logging method

int pjsua_reconfigure_logging(
  1. Pointer<pjsua_logging_config> c
)

Application can call this function at any time (after pjsua_create(), of course) to change logging settings.

@param c Logging configuration.

@return PJ_SUCCESS on success, or the appropriate error code.

Implementation

int pjsua_reconfigure_logging(
  ffi.Pointer<pjsua_logging_config> c,
) {
  return _pjsua_reconfigure_logging(
    c,
  );
}