Disable logging and email since Don turned off device (old change, forgot to commit)

This commit is contained in:
jkaplon 2021-10-11 15:13:28 -04:00
parent d42c016507
commit f6cb270324

View File

@ -326,6 +326,7 @@ app.get('/:loc', function(req, res) {
} }
}); });
/* // 08.29.2019, disable logging and email since Don turned off device.
setInterval(function() { setInterval(function() {
// Check every hour to see if GoodMorning or GoodEvening has gone missing. // Check every hour to see if GoodMorning or GoodEvening has gone missing.
pg.connect(conString, function(err, client, done) { pg.connect(conString, function(err, client, done) {
@ -355,6 +356,7 @@ setInterval(function() {
}); });
}); });
}, 60 * 60 * 1000); }, 60 * 60 * 1000);
*/
app.listen(3000, function() { app.listen(3000, function() {
winston.info("Started on PORT 3000"); winston.info("Started on PORT 3000");