lmstack 3 anni fa
parent
commit
0afba0027f

+ 5 - 5
src/main/java/com/qx/didi/controller/ShowDataController.java

@@ -101,7 +101,7 @@ public class ShowDataController {
             response.setMinVolt(Collections.min(voltages));
             response.setMinVoltIndex("单体电芯" + voltages.indexOf(Collections.min(voltages)));
             response.setCellTemp(resultOriginData.getCelltemp());
-            log.info(param.getSn() + "结果返回");
+            log.info(param.getSn() + "右侧结果返回");
             return ApiDTO.ok(response);
         } catch (Exception e) {
             throw new ApiRuntimeException(500, e.toString());
@@ -139,7 +139,7 @@ public class ShowDataController {
             }
             response.setInnershortTime(innerShortDate);
             response.setInnershortY(innerShortDatas);
-            log.info(param.getSn() + "结果返回");
+            log.info(param.getSn() + "内短路结果返回");
             return ApiDTO.ok(response);
         } catch (Exception e) {
             throw new ApiRuntimeException(500, e.toString());
@@ -175,7 +175,7 @@ public class ShowDataController {
             }
             response.setVoltoutlierTime(voltOutlierDate);
             response.setVoltoutlierY(voltOutlierDatas);
-            log.info(param.getSn() + "结果返回");
+            log.info(param.getSn() + "电压离群结果返回");
             return ApiDTO.ok(response);
         } catch (Exception e) {
             throw new ApiRuntimeException(500, e.toString());
@@ -211,7 +211,7 @@ public class ShowDataController {
             }
             response.setVoltdiffoutlierTime(voltdiffOutlierDate);
             response.setVoltdiffoutlierY(voltdiffOutlierDatas);
-            log.info(param.getSn() + "结果返回");
+            log.info(param.getSn() + "压差离群结果返回");
             return ApiDTO.ok(response);
         } catch (Exception e) {
             throw new ApiRuntimeException(500, e.toString());
@@ -235,7 +235,7 @@ public class ShowDataController {
             response.setSohTime(sohDate);
             response.setSohY(sohData);
 
-            log.info(param.getSn() + "结果返回");
+            log.info(param.getSn() + "soh结果返回");
             return ApiDTO.ok(response);
         } catch (Exception e) {
             throw new ApiRuntimeException(500, e.toString());