We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e57df5 commit e822d87Copy full SHA for e822d87
index.js
@@ -240,7 +240,6 @@ document.addEventListener('DOMContentLoaded', function() {
240
241
function sm32bit() {
242
// Convert current subnet mask (string form) to a 32-bit (4-byte) value
243
- console.log("Converting");
244
return (parseInt($('sm0').value) << 24) + (parseInt($('sm1').value) << 16) + (parseInt($('sm2').value) << 8) + parseInt($('sm3').value);
245
}
246
@@ -446,7 +445,7 @@ function sendPortList(socket) {
446
445
var msg_to_send = {type:'port-list',ports:wn.concat(wln)};
447
socket.send(JSON.stringify(msg_to_send));
448
if (chrome.runtime.lastError) {
449
- console.log(chrome.runtime.lastError);
+ log(chrome.runtime.lastError, mDbug);
450
451
452
0 commit comments