debug: 新增一段 INFO Log

This commit is contained in:
yarnom 2025-12-18 17:08:54 +08:00
parent b76df40104
commit 0661be76c3

View File

@ -126,7 +126,6 @@ public class D331RtcmMessageExecutor implements Executor<D331RtcmMessage, Void>
}
// 添加NTRIP处理
if(deviceBs.getForwardToNtrip()) {
byte[] srcdata = message.getSrcData();
String rtcm = ByteUtil.bytesToHexString(srcdata);
@ -269,9 +268,10 @@ public class D331RtcmMessageExecutor implements Executor<D331RtcmMessage, Void>
// ByteUtil.bytesToHexString(buf.array()));
}
// logger.info("insert1005 hex for base {} to {}: {}",
// deviceBs.getDeviceId(), deviceId,
// ByteUtil.bytesToHexString(buf1005.array()));
logger.info("insert1005 hex for base {} to {}: {}",
deviceBs.getDeviceId(), deviceId,
ByteUtil.bytesToHexString(buf1005.array()));
return buf1005;
}