diff --git a/comments/app.js b/comments/app.js index 287f3c586e40267e96acf1fd05446bde7c3430df..8603f915216b374b12aa329826d148c5e0b438d5 100644 --- a/comments/app.js +++ b/comments/app.js @@ -37,7 +37,8 @@ app.configure(function() { store: new MySQLStore( config.mysql.database, config.mysql.user, - config.mysql.password + config.mysql.password, + {logging: false} ) })); @@ -53,6 +54,8 @@ app.configure(function() { app.use(express.methodOverride()); app.enable('jsonp callback'); + + app.use(express.logger('dev')); }); // Authentication is disabled for now.