Kaynağa Gözat

优化交易记录

liaijie 3 yıl önce
ebeveyn
işleme
63f82378ed

+ 6 - 6
src/main/java/com/izouma/nineth/service/AssetService.java

@@ -470,9 +470,9 @@ public class AssetService {
             String operation =  operation1.toString();
             List<UserHistory> content = map.getContent();
             for (int i = 0; i < content.size(); i++) {
-                log.debug("传过来的值为:"+operation);
-                log.debug("原来的的值为:"+content.get(i).getDescription());
-                log.debug("=================");
+                log.error("传过来的值为:"+operation);
+                log.error("原来的的值为:"+content.get(i).getDescription());
+                log.error("=================");
                 if (!content.get(i).getDescription().equals(operation)){
                     content.remove(i);
                     i--;
@@ -481,9 +481,9 @@ public class AssetService {
             Pageable pageable = PageRequest.of(pageQuery.getPage(), pageQuery.getSize());
             map = PageUtil.createPageFromList(content, pageable);
         }
-        log.debug("++++++++++++++++++++++++++++");
-        log.debug("传过来的值为:"+operation1.toString());
-        log.debug("++++++++++++++++++++++++++++");
+        log.error("++++++++++++++++++++++++++++");
+        log.error("传过来的值为:"+operation1.toString());
+        log.error("++++++++++++++++++++++++++++");
         return map;
     }