diff --git a/lib/response.js b/lib/response.js index b23391f..64251da 100644 --- a/lib/response.js +++ b/lib/response.js @@ -64,7 +64,6 @@ module.exports = function(request, response, result) { // handle etag caching var incoming_etag = request.headers["if-none-match"]; if (incoming_etag && incoming_etag === headers.Etag) { - logging.debug(request.id, "Etag matches"); response.writeHead(304, headers); response.end(); return;