Explorar el Código

remove unnecessary log

jomo hace 10 años
padre
commit
ed25d30ff0
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      lib/response.js

+ 0 - 1
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;