单次解析结果的debug改为info级
This commit is contained in:
parent
84ab55bcf6
commit
655cced8a8
@ -130,14 +130,14 @@ public class SingleLineGNSSCalcService implements GNSSDataCalcService {
|
||||
double[] doubles = message.getB562_loc();//unit: mm
|
||||
if(doubles !=null) {
|
||||
focusCalculator.addXyz(doubles, message.getCreateTime());
|
||||
logger.debug("测站" + deviceId + "的b562单次解析结果:{}", Arrays.toString(doubles));
|
||||
logger.info("测站" + deviceId + "的b562单次解析结果:{}", Arrays.toString(doubles));
|
||||
}
|
||||
|
||||
// 单次GGA
|
||||
Gga gga = message.getGga();
|
||||
if(gga != null) {
|
||||
focusCalculator.addGGA(message.getGga());
|
||||
logger.debug("测站" + deviceId + "的gga单次解析结果:{},{},{},{}",
|
||||
logger.info("测站" + deviceId + "的gga单次解析结果:{},{},{},{}",
|
||||
gga.getLongitude(), gga.getLatitude(), gga.getAltitude(), gga.getQuality());
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user