From 93d6eecfbf9e76f4901b506ced16aa53a6349081 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sat, 10 Feb 2024 15:13:55 -0500 Subject: [PATCH] Remove some extra debug --- server/modules/socketServerWrappers.mjs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/server/modules/socketServerWrappers.mjs b/server/modules/socketServerWrappers.mjs index af0e6af..f146723 100644 --- a/server/modules/socketServerWrappers.mjs +++ b/server/modules/socketServerWrappers.mjs @@ -100,9 +100,7 @@ export const nearbySystemsUpdateWraper = async (nuid, nearbySystems) => { // Check if the system exists already on another node const existingSystem = await getSystemByName(nearbySystem); if (existingSystem) { - // Verify the frequencies match (to make sure the name isn't just the same) - console.log(existingSystem.frequencies, nearbySystems[nearbySystem].frequencies, (JSON.stringify(existingSystem.frequencies) === JSON.stringify(nearbySystems[nearbySystem].frequencies))); - + // Verify the frequencies match (to make sure the name isn't just the same) if (JSON.stringify(existingSystem.frequencies) === JSON.stringify(nearbySystems[nearbySystem].frequencies)) { // The systems are the same