[core,gateway] less verbose logging

Do not log HTTP_DENIED as warning, this is expected on unauthenticated
connection attempts.
This commit is contained in:
akallabeth
2025-06-20 11:39:41 +02:00
parent 82f2488375
commit 59bfe47ef7

View File

@@ -1382,6 +1382,10 @@ static BOOL rdg_establish_data_connection(rdpRdg* rdg, rdpTls* tls, const char*
case HTTP_STATUS_OK:
break;
case HTTP_STATUS_DENIED:
http_response_log_error_status(rdg->log, WLOG_DEBUG, response);
break;
default:
http_response_log_error_status(rdg->log, WLOG_WARN, response);
break;