update 打印日志

This commit is contained in:
2023-12-15 15:51:01 +08:00
parent 1f8016c4d4
commit dc62bd0584

View File

@@ -50,7 +50,7 @@ public class TimeCheckSettingResponseHandler extends AbstractHandler{
length = 7; length = 7;
byte[] currentTimeByteArr = BytesUtil.copyBytes(msgBody, startIndex, length); byte[] currentTimeByteArr = BytesUtil.copyBytes(msgBody, startIndex, length);
Date date = Cp56Time2aUtil.byte2Hdate(currentTimeByteArr); Date date = Cp56Time2aUtil.byte2Hdate(currentTimeByteArr);
log.info("对时设置应答, pileSn:{}, 充电桩当前时间:{}", pileSn, DateUtils.formatDateTime(date)); log.info("对时设置应答, pileSn:{}, channelId:{}, 充电桩当前时间:{}", pileSn, channel.id().asShortText(), DateUtils.formatDateTime(date));
return null; return null;
} }
} }