From 76fe50d91044c68fb5d8326d1c9e96ad255b2a89 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Wed, 4 May 2022 15:52:15 +0900 Subject: [PATCH] Update http.js --- lib/http.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/http.js b/lib/http.js index e2ba812..2f65a8a 100644 --- a/lib/http.js +++ b/lib/http.js @@ -51,6 +51,7 @@ var HTTPObject = function(engine) { this.saveTo = null; this.isLoggingCookie = false; + this.debuggingText = ''; this.create = function() { if (this.engine == "MSXML") { @@ -473,6 +474,9 @@ var HTTPObject = function(engine) { // Get response text responseText = this.interface.exec(cmd); + + // Get debuging text + this.debuggingText = this.interface.stderr; } }