Skip to content

Commit

Permalink
Better err logging
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdan-iancu committed Apr 2, 2015
1 parent ef6a375 commit a9ea0a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/rtpengine/rtpengine.c
Expand Up @@ -1498,7 +1498,7 @@ send_rtpe_command(struct rtpe_node *node, bencode_item_t *dict, int *outlen)
} while (len == -1 && errno == EINTR);
if (len <= 0) {
close(fd);
LM_ERR("can't send command to a RTP proxy\n");
LM_ERR("can't send command to a RTP proxy (%s)\n",strerror(errno));
goto badproxy;
}
do {
Expand Down

0 comments on commit a9ea0a1

Please sign in to comment.