diff --git a/radsecproxy.c b/radsecproxy.c index 4a0cb3d..212c147 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1039,7 +1039,7 @@ void replylog(struct radmsg *msg, struct server *server, struct request *rq) { } if (msg->code == RAD_Access_Accept || msg->code == RAD_Access_Reject || msg->code == RAD_Accounting_Response) { - if (msg->code == RAD_Accounting_Response) + if (msg->code == RAD_Accounting_Response || rq->msg->code == RAD_Status_Server) level = DBG_INFO; if (logusername) { debug(level, "%s for user %s%s%s from %s%s to %s (%s)%s", @@ -1446,7 +1446,7 @@ void replyh(struct server *server, unsigned char *buf) { if (rqout->rq->msg->code == RAD_Status_Server) { freerqoutdata(rqout); - debug(DBG_NOTICE, "replyh: got status server response from %s", server->conf->name); + debug(DBG_INFO, "replyh: got status server response from %s", server->conf->name); if (server->conf->statusserver == RSP_STATSRV_AUTO) server->conf->statusserver = RSP_STATSRV_MINIMAL; goto errunlock;