#5606·canal

PhoenixAdapter uses printStackTrace instead of proper logging

Author: lxcxjxhxCreated Jul 30, 2026Updated Jul 30, 2026

The PhoenixAdapter class uses e.printStackTrace() for error handling instead of the SLF4J logger that is already configured in the class. This outputs to stderr which may not be captured by logging systems and silently continues execution after a critical initialization failure. Should use logger.error() and throw a RuntimeException to fail fast.