[Upload]对socket RequestUtil 增加日志msgId输出

This commit is contained in:
donghongyu
2021-11-19 15:04:45 +08:00
parent 7e2c3cb921
commit c18b46b5c2
2 changed files with 11 additions and 11 deletions

View File

@@ -72,7 +72,7 @@ public final class RequestUtil {
final Channel channel = ClientSocketManager.getInstance().getChannel();
if (checkNotNull(channel)) {
channel.writeAndFlush(RequestModelUtil.buildPayloadData(productLine, appId, payload, headerType, ack, msgId));
Logger.i(SocketConstants.TAG, "send---> appId is: " + appId + "; headerType is: " + headerType);
Logger.i(SocketConstants.TAG, "send---> appId is: " + appId + "; headerType is: " + headerType+ "; msgId is: " + msgId);
}
}