Skip to content

Commit

Permalink
Fixes nodejs#1546. Remove expensive debug call.
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Aug 17, 2011
1 parent 5e37e10 commit 9cd5108
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/http.js
Expand Up @@ -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
Expand Down

0 comments on commit 9cd5108

Please sign in to comment.