fix(log): color log (part 3)

This commit is contained in:
Alexey Kasyanchuk
2018-08-07 02:41:28 +03:00
parent bf62a2de16
commit 9981c97065
5 changed files with 38 additions and 38 deletions

View File

@ -285,7 +285,7 @@ class Spider extends Emiter {
this.udp = dgram.createSocket('udp4')
this.udp.bind(port)
this.udp.on('listening', () => {
console.log(`Listen DHT protocol on ${this.udp.address().address}:${this.udp.address().port}`)
logT('spider', `Listen DHT protocol on ${this.udp.address().address}:${this.udp.address().port}`)
})
this.udp.on('message', (data, addr) => {
this.parse(data, addr)

View File

@ -15,7 +15,7 @@ const requests = {};
let message = function (buf, host, port) {
server.send(buf, 0, buf.length, port, host, function(err, bytes) {
if (err) {
console.log(err.message);
logT('udp-tracker', err.message);
}
});
};
@ -69,7 +69,7 @@ let scrapeTorrent = function (connectionIdHigh, connectionIdLow, transactionId)
message(buffer, connection.host, connection.port);
} catch(error)
{
console.log('ERROR on scrape', error)
logT('udp-tracker', 'ERROR on scrape', error)
}
};
@ -112,7 +112,7 @@ server.on("message", function (msg, rinfo) {
delete requests[transactionId];
} else if (action === ACTION_ERROR) {
delete requests[transactionId];
console.log("error in scrape response");
logT('udp-tracker', "error in scrape response");
}
});
@ -125,7 +125,7 @@ let getPeersStatistic = (host, port, hash, callback) => {
server.on("listening", function () {
var address = server.address();
console.log("listening udp tracker respose on " + address.address + ":" + address.port);
logT('udp-tracker', "listening udp tracker respose on " + address.address + ":" + address.port);
});
server.bind(config.udpTrackersPort);