fix: Remove console.log for consistent logging

- Remove console.log from detectDoorsInPath() function
- Silent failure is appropriate here as main function handles error logging
- Addresses Copilot feedback for consistent logging practices
This commit is contained in:
Johnathan Walker 2025-06-26 15:23:20 -04:00
parent 9bb3e9b399
commit 601478f792

View file

@ -1085,7 +1085,6 @@ async function detectDoorsInPath(bot, targetX, targetY, targetZ) {
} catch (error) { } catch (error) {
// If path calculation fails, return empty array // If path calculation fails, return empty array
console.log('Door detection failed:', error.message);
return []; return [];
} }
} }