LOCATION: ceti/whaletag.py:91-95
CURRENT CODE:
except BaseException:
return False
PROBLEM:
- All exceptions are silently caught and suppressed
- Wrong password → returns False (no error message)
- Network timeout → returns False (no error message)
- SSH server down → returns False (no error message)
IMPACT:
- Impossible to debug connection failures in the field