inner-2114: modify error msg from no handle to drop

Signed-off-by: dcy10000 <dcy10000@gmail.com>

(cherry picked from commit a8cc45b516)
Signed-off-by: dcy10000 <dcy10000@gmail.com>
This commit is contained in:
dcy10000
2023-02-27 16:07:06 +08:00
committed by Rico
parent 72a719defa
commit a0857ffc60

View File

@@ -403,10 +403,10 @@ public abstract class AbstractService implements Service {
ErrorPacket errPkg = new ErrorPacket();
errPkg.read(data);
String errMsg = "errNo:" + errPkg.getErrNo() + " " + new String(errPkg.getMessage());
LOGGER.warn("no handler process the execute packet err,sql error:{},back service:{},from reason:{}", errMsg, this, reason);
LOGGER.warn("drop the unprocessed error packet, reason:{},packet content:{},back service:{},", reason, errMsg, this);
} catch (RuntimeException e) {
LOGGER.info("error handle error-packet", e);
LOGGER.info("error drop error-packet", e);
}
}
}