fix: removed debug condition on http-req-dump script

This commit is contained in:
evilsocket 2018-01-10 18:16:45 +01:00
commit b8dd20ceae

View file

@ -119,9 +119,6 @@ function dumpRaw(req) {
}
function onRequest(req, res) {
if(req.Method == 'GET')
return;
log( BOLD(req.Client), ">", B(req.Method), req.Hostname + req.Path + ( req.Query ? "?" + req.Query : '') );
dumpHeaders(req);