Skip to content

Commit

Permalink
DEBUG2 --> RDEBUG2 for messages
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed May 24, 2014
1 parent e35882d commit 358b44d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/main/process.c
Expand Up @@ -550,12 +550,11 @@ STATE_MACHINE_DECL(request_done)
* packets from the home server.
*/
case FR_ACTION_PROXY_REPLY:
DEBUG2("Reply from home server %s port %d - ID: %d arrived too late for request %u. Try increasing 'retry_delay' or 'max_request_time'",
RDEBUG2("Reply from home server %s port %d - ID: %d arrived too late. Try increasing 'retry_delay' or 'max_request_time'",
inet_ntop(request->proxy->src_ipaddr.af,
&request->proxy->src_ipaddr.ipaddr,
buffer, sizeof(buffer)),
request->proxy->dst_port, request->proxy->id,
request->number);
request->proxy->dst_port, request->proxy->id);
return;
#endif

Expand Down Expand Up @@ -1033,12 +1032,11 @@ STATE_MACHINE_DECL(request_common)

#ifdef WITH_PROXY
case FR_ACTION_PROXY_REPLY:
DEBUG2("Reply from home server %s port %d - ID: %d arrived too late for request %u. Try increasing 'retry_delay' or 'max_request_time'",
RDEBUG2("Reply from home server %s port %d - ID: %d arrived too late. Try increasing 'retry_delay' or 'max_request_time'",
inet_ntop(request->proxy->dst_ipaddr.af,
&request->proxy->dst_ipaddr.ipaddr,
buffer, sizeof(buffer)),
request->proxy->dst_port, request->proxy->id,
request->number);
request->proxy->dst_port, request->proxy->id);
return;
#endif

Expand Down

0 comments on commit 358b44d

Please sign in to comment.