test pc 3 years ago
parent
commit
d8870ada4e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/scene/scene.service.ts

+ 2 - 2
src/scene/scene.service.ts

@@ -443,7 +443,7 @@ export class SceneService implements OnModuleInit, OnModuleDestroy {
         }
 
         // 二维数组 做move 序列, move类型
-        console.log('move-walkingRes:'+walkingRes[1].length);
+        console.log('move-walkingRes:'+JSON.stringify(walkingRes));
         if (walkingRes && walkingRes?.length >= 1) {
           for (let i = 1; i < walkingRes.length; i++) {
             Array.from(walkingRes[i]).forEach(
@@ -470,7 +470,7 @@ export class SceneService implements OnModuleInit, OnModuleDestroy {
         const seqs = Array.from(walkingRes).flat() as any as StreamReplyType[];
 
         if (seqs?.length) {
-          this.logger.log('walking --总序列--seqs-2'+ seqs.length);
+          this.logger.log('walking --总序列--seqs-2:'+ seqs.length);
           const stop = performance.now();
           const inMillSeconds = stop - start;
           const rounded = Number(inMillSeconds).toFixed(3);