chore(nodeserver): fix log message for 301 response

This commit is contained in:
Steven Davidson
2013-02-19 18:19:52 +00:00
committed by Igor Minar
parent bec614fd90
commit c36933d38f

View File

@@ -187,7 +187,7 @@ StaticServlet.prototype.sendRedirect_ = function(req, res, redirectUrl) {
'">here</a>.</p>'
);
res.end();
sys.puts('401 Moved Permanently: ' + redirectUrl);
sys.puts('301 Moved Permanently: ' + redirectUrl);
};
StaticServlet.prototype.sendFile_ = function(req, res, path) {