Skip to content

Commit

Permalink
Added log lines to more examples
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Oct 5, 2010
1 parent fa464ac commit 9f3ab86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/blog/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ require('./contact');
// be "mounted" to another at the given route.
app.use('/blog', require('./blog'));

app.listen(3000);
app.listen(3000);
console.log('Express started on port 3000');
3 changes: 2 additions & 1 deletion examples/cookies/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ app.post('/', function(req, res){
res.redirect('back');
});

app.listen(3000);
app.listen(3000);
console.log('Express started on port 3000');

0 comments on commit 9f3ab86

Please sign in to comment.