Get rid of extra console logging; test commit/push from inside dev container

This commit is contained in:
jkaplon 2015-07-07 18:16:07 +00:00
parent b11667581d
commit 28190b1c8f

View File

@ -84,8 +84,8 @@ app.get('/core/:id', function(req, res){
if(err !== null) {
console.log(err);
} else {
console.log("SELECT coreId, published_at FROM Alerts WHERE coreId = '" + coreId + "' ORDER BY published_at DESC LIMIT 30;");
console.log(rows);
//console.log("SELECT coreId, published_at FROM Alerts WHERE coreId = '" + coreId + "' ORDER BY published_at DESC LIMIT 30;");
//console.log(rows);
res.render('core', {alerts: rows}, function(err, html) {
res.send(html);
});