Add debugging

This commit is contained in:
Alex Janka 2017-06-02 22:32:40 +10:00
parent c8d88b2f5b
commit 8a86435408

View file

@ -16,6 +16,7 @@ app.enable('trust-proxy');
app.get('/', function (req, res) { app.get('/', function (req, res) {
getIpInfo(req.ip).done(function (geoinfo: IPGeoJson) { getIpInfo(req.ip).done(function (geoinfo: IPGeoJson) {
console.log("ip: " + geoinfo.ip);
res.render('home', { res.render('home', {
helpers: { helpers: {
ip: function () { return geoinfo.ip; }, ip: function () { return geoinfo.ip; },
@ -59,8 +60,10 @@ function getIpInfo(ip: String): Promise.IThenable<{}> {
var cached = cache.get(ip); var cached = cache.get(ip);
if (cached != null) { if (cached != null) {
console.log("serving cached");
resolve(cached); resolve(cached);
} else { } else {
console.log("serving fetched");
https.get(options, callback); https.get(options, callback);
} }
}) })