add more debugging
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10212 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
86e4283ade
commit
c2133d4d62
|
@ -1474,7 +1474,7 @@ static void xmpp_connect(ldl_handle_t *handle, char *jabber_id, char *pass)
|
|||
case IKS_OK:
|
||||
break;
|
||||
case IKS_NET_NODNS:
|
||||
globals.logger(DL_LOG_DEBUG, "hostname lookup failed\n");
|
||||
globals.logger(DL_LOG_DEBUG, "hostname lookup failed for %s\n", handle->server);
|
||||
microsleep(1000);
|
||||
goto fail;
|
||||
case IKS_NET_NOCONN:
|
||||
|
|
|
@ -685,6 +685,7 @@ SWITCH_STANDARD_API(enum_api)
|
|||
if ((argc = switch_separate_string(mydata, ' ', argv, (sizeof(argv) / sizeof(argv[0]))))) {
|
||||
dest = argv[0];
|
||||
root = argv[1];
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Looking up %s@%s\n", dest, root);
|
||||
if (enum_lookup(root, dest, &results) == SWITCH_STATUS_SUCCESS) {
|
||||
for (rp = results; rp; rp = rp->next) {
|
||||
if (!rp->supported) {
|
||||
|
|
Loading…
Reference in New Issue