diff --git a/lib/http.js b/lib/http.js index c58ba24..9e3aee6 100644 --- a/lib/http.js +++ b/lib/http.js @@ -218,6 +218,8 @@ var HTTPObject = function(engine) { this.proxy.port = proxy['port'] || this.proxy.port; this.proxy.credential = proxy['credential'] || this.proxy.credential; } + + console.info("Please check documentation:", availableProxy.documentation); } } @@ -228,6 +230,7 @@ var HTTPObject = function(engine) { this.proxy[k] = proxy[k]; } + return this; };