@zwa73/utils 1.0.39 → 1.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/UtilCom.js CHANGED
@@ -43,7 +43,7 @@ var UtilCom;
43
43
  }
44
44
  try {
45
45
  let obj = JSON.parse(resdata);
46
- UtilLogger_1.SLogger.http(funcName + " 接受信息:", obj);
46
+ UtilLogger_1.SLogger.http(funcName + " 接受信息:", (0, UtilInterfaces_1.stringifyJToken)(obj));
47
47
  resolve(obj);
48
48
  return;
49
49
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zwa73/utils",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "description": "my utils",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/UtilCom.ts CHANGED
@@ -47,7 +47,7 @@ function sPost(type:"http"|"https",json:JObject,options:Object,timeLimit:number=
47
47
  }
48
48
  try{
49
49
  let obj = JSON.parse(resdata);
50
- SLogger.http(funcName+" 接受信息:",obj);
50
+ SLogger.http(funcName+" 接受信息:",stringifyJToken(obj));
51
51
  resolve(obj);
52
52
  return;
53
53
  }