fix merge conflict
[oweals/finalsclub.git] / app.js
diff --git a/app.js b/app.js
index bda679382400c0d60f4a1b1f0cd70a8f5ac849f3..c94efaed7bd56c8ec0324494f44fec7f8b692282 100644 (file)
--- a/app.js
+++ b/app.js
@@ -1633,6 +1633,7 @@ app.get( '/archive/course/:id', checkAjax, loadUser, loadOldCourse, function( re
 })
 
 app.get( '/archive/note/:id', checkAjax, loadUser, function( req, res ) {
+  console.log( "id="+req.params.id)
   ArchivedNote.findById(req.params.id, function(err, note) {
     if ( err || !note ) {
       sendJson(res,  {status: 'error', message: 'This is not a valid id for a note'} );