mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
chore(nodeserver): fix log message for 301 response
This commit is contained in:
parent
bec614fd90
commit
c36933d38f
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue