Remove some extra debug

This commit is contained in:
Logan Cusano
2024-02-10 15:13:55 -05:00
parent 9c46792959
commit 93d6eecfbf

View File

@@ -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