From aef71774025cd3f1f015069129576ad6b53b771a Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 22 Dec 2021 18:48:23 -0500 Subject: [PATCH] debug helper --- http2.d | 1 + 1 file changed, 1 insertion(+) diff --git a/http2.d b/http2.d index 73b4fdf..0a78afc 100644 --- a/http2.d +++ b/http2.d @@ -2010,6 +2010,7 @@ class HttpRequest { if(followLocation && responseData.location.length) { static bool first = true; //version(DigitalMars) if(!first) asm { int 3; } + debug(arsd_http2) writeln("redirecting to ", responseData.location); populateFromInfo(Uri(responseData.location), HttpVerb.GET); //import std.stdio; writeln("redirected to ", responseData.location); first = false;