From 12093c52d3c9b63b256f6d34b4c4d80f21b171dd Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 25 Sep 2017 15:57:40 -0600 Subject: [PATCH] remove logs --- packer/type.txt.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/packer/type.txt.js b/packer/type.txt.js index dee1b66..e63c36e 100644 --- a/packer/type.txt.js +++ b/packer/type.txt.js @@ -13,26 +13,18 @@ exports.DNS_PACKER_TYPE_TXT = function (ab, dv, total, record) { total += 3; // RDATA - console.log("what is my record data: " + typeof record.data[0]); - console.log("what are my labels? "); - // var res = record.data[0].split(" "); - // console.log("Res: " + res); - - console.log("for each rdata"); record.data.forEach(function(str){ str.split('').forEach(function(ch){ - txtLen += 1; // console.log(chcim); dv.setUint8(total, ch.charCodeAt(0), false); total += 1; - + }); }); - console.log("txt rdata length is: " + txtLen); dv.setUint16(rdLenIndex, txtLen+1, false); dv.setUint8(rdLenIndex+2, txtLen, false); // total +=1;