Administrator 3 年之前
父节点
当前提交
26dd8eacc6
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      Projects/永冠OPP/WCS.Service/Helpers/FinishTaskList.cs

+ 3 - 2
Projects/永冠OPP/WCS.Service/Helpers/FinishTaskList.cs

@@ -1,4 +1,5 @@
-using System;
+using Newtonsoft.Json;
+using System;
 using System.Collections.Generic;
 using System.Linq;
 using WCS.Service.Entity;
@@ -55,7 +56,7 @@ namespace WCS.Service.Helpers
                 _ => throw new WarnException($"一组任务数量最大为2,当前{items.Length}"),
             };
             var time = DateTime.Now;
-            InfoLog.INFO_TIMING($"扫码入库接口调用,耗时{(time - now).TotalMilliseconds},{now}-----{time}");
+            InfoLog.INFO_TIMING($"扫码入库接口调用,耗时{(time - now).TotalMilliseconds},{now}-----{time}---{JsonConvert.SerializeObject(infos)}");
             return infos;
         }
     }