X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Fhttp.c;h=a16e7c5af7ac99122aaef7ae34631a87463e0f13;hb=366e4c2fd1d8ee0036ee9705c49241655874ae92;hp=f39ebe2146a1e2dad4eaa5ea1ec28f2affe3236f;hpb=224e9cc7a1a084568e136f7b959c32e177ce7ef8;p=citadel.git diff --git a/webcit-ng/http.c b/webcit-ng/http.c index f39ebe214..a16e7c5af 100644 --- a/webcit-ng/http.c +++ b/webcit-ng/http.c @@ -229,7 +229,7 @@ void perform_one_http_transaction(struct client_handle *ch) { #endif // Output the results back to the client. - syslog(LOG_DEBUG, "> %03d %s", h.response_code, h.response_string); + syslog(LOG_DEBUG, "\033[33m\033[1m> %03d %s\033[0m", h.response_code, h.response_string); client_printf(ch, "HTTP/1.1 %03d %s\r\n", h.response_code, h.response_string); client_printf(ch, "Connection: close\r\n"); client_printf(ch, "Content-Length: %ld\r\n", h.response_body_length);