if (class == NULL) {
(*env)->ExceptionDescribe(env);
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "%s Class not found\n",userMethod->class);
status = SWITCH_STATUS_FALSE;
goto done;
}
if (method == NULL) {
(*env)->ExceptionDescribe(env);
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "%s Method not found\n",userMethod->method);
status = SWITCH_STATUS_FALSE;
goto done;
}
if (arg == NULL) {
(*env)->ExceptionDescribe(env);
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Args not found\n");
status = SWITCH_STATUS_FALSE;
goto done;
}