Remove more debugging

This commit is contained in:
Alex Janka 2017-06-02 22:58:01 +10:00
parent 3c866667bc
commit 85048ca048

View file

@ -59,10 +59,8 @@ function getIpInfo(ip: String): Promise.IThenable<{}> {
var cached = cache.get(ip);
if (cached != null) {
console.log("serving cached");
resolve(cached);
} else {
console.log("serving fetched");
https.get(options, callback);
}
})