mirror of
https://github.com/smittix/intercept.git
synced 2026-07-04 15:53:39 -07:00
Remove debug console.log statements
Clean up temporary debug logging from channel recommendation and WiFi client card debugging. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
+1
-16
@@ -4289,12 +4289,8 @@
|
|||||||
channels5g.forEach(ch => channelCounts5[ch] = 0);
|
channels5g.forEach(ch => channelCounts5[ch] = 0);
|
||||||
|
|
||||||
// Count networks per channel
|
// Count networks per channel
|
||||||
console.log('Channel recommendation - networks:', Object.keys(wifiNetworks).length);
|
|
||||||
Object.values(wifiNetworks).forEach(net => {
|
Object.values(wifiNetworks).forEach(net => {
|
||||||
const ch = parseInt(net.channel);
|
const ch = parseInt(net.channel);
|
||||||
if (isNaN(ch)) {
|
|
||||||
console.warn('Invalid channel for network:', net.essid, 'channel value:', net.channel);
|
|
||||||
}
|
|
||||||
if (ch >= 1 && ch <= 13) {
|
if (ch >= 1 && ch <= 13) {
|
||||||
// 2.4 GHz channels overlap, so count neighbors too
|
// 2.4 GHz channels overlap, so count neighbors too
|
||||||
for (let i = Math.max(1, ch - 2); i <= Math.min(13, ch + 2); i++) {
|
for (let i = Math.max(1, ch - 2); i <= Math.min(13, ch + 2); i++) {
|
||||||
@@ -4334,12 +4330,6 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Debug: show final counts
|
|
||||||
console.log('Channel counts 2.4GHz:', channelCounts24);
|
|
||||||
console.log('Channel counts 5GHz:', channelCounts5);
|
|
||||||
console.log('Best 2.4GHz:', best24, 'count:', minCount24);
|
|
||||||
console.log('Best 5GHz:', best5, 'count:', minCount5);
|
|
||||||
|
|
||||||
// Update UI with more context
|
// Update UI with more context
|
||||||
document.getElementById('rec24Channel').textContent = best24;
|
document.getElementById('rec24Channel').textContent = best24;
|
||||||
if (totalNetworks === 0) {
|
if (totalNetworks === 0) {
|
||||||
@@ -4911,7 +4901,6 @@
|
|||||||
|
|
||||||
// Handle discovered WiFi client (called from batched update)
|
// Handle discovered WiFi client (called from batched update)
|
||||||
function handleWifiClientImmediate(client) {
|
function handleWifiClientImmediate(client) {
|
||||||
console.log('handleWifiClientImmediate:', client);
|
|
||||||
const isNew = !wifiClients[client.mac];
|
const isNew = !wifiClients[client.mac];
|
||||||
wifiClients[client.mac] = client;
|
wifiClients[client.mac] = client;
|
||||||
|
|
||||||
@@ -5244,12 +5233,8 @@
|
|||||||
|
|
||||||
// Add WiFi client card to device list
|
// Add WiFi client card to device list
|
||||||
function addWifiClientCard(client, isNew) {
|
function addWifiClientCard(client, isNew) {
|
||||||
console.log('addWifiClientCard called:', client.mac, 'isNew:', isNew);
|
|
||||||
const deviceList = document.getElementById('wifiDeviceListContent');
|
const deviceList = document.getElementById('wifiDeviceListContent');
|
||||||
if (!deviceList) {
|
if (!deviceList) return;
|
||||||
console.error('wifiDeviceListContent not found!');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove placeholder if present
|
// Remove placeholder if present
|
||||||
const placeholder = deviceList.querySelector('div[style*="text-align: center"]');
|
const placeholder = deviceList.querySelector('div[style*="text-align: center"]');
|
||||||
|
|||||||
Reference in New Issue
Block a user