From 9cd510846eea5ebdd116fb45ef4d5be64acda022 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 17 Aug 2011 13:21:15 -0700 Subject: [PATCH] Fixes #1546. Remove expensive debug call. --- lib/http.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/http.js b/lib/http.js index d532eddf0cc5ed..ed6c432548f3b7 100644 --- a/lib/http.js +++ b/lib/http.js @@ -609,7 +609,6 @@ OutgoingMessage.prototype.write = function(chunk, encoding) { if (typeof(chunk) === 'string') { len = Buffer.byteLength(chunk, encoding); var chunk = len.toString(16) + CRLF + chunk + CRLF; - debug('string chunk = ' + util.inspect(chunk)); ret = this._send(chunk, encoding); } else { // buffer