minor updates

This commit is contained in:
Martin Donnelly 2016-03-23 15:09:25 +00:00
parent 5e534c3297
commit 8f1de5e809
2 changed files with 3 additions and 3 deletions

View File

@ -441,9 +441,9 @@ setTimeout(function () {
}, 15000);
setTimeout(function () {
/*setTimeout(function () {
sendEmailV1();
}, 45000);
}, 45000);*/
cron.schedule('45 6 * * *', function () {
module.exports.preLoadToday();

View File

@ -104,6 +104,6 @@ app.use('/btc', btc.doBTC);
* create the server
*/
http.createServer(app).listen(app.get('port'), function () {
logger.info("Express server listening on port " + app.get('port'));
logger.warn("Express server listening on port " + app.get('port'));
//console.log("Express server listening on port " + app.get('port'));
});