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

This reverts commit 3671556bef.
This commit is contained in:
dcy10000
2023-04-12 13:37:29 +08:00
parent 4b6ca09daa
commit cfc26f574c

View File

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