assistsx-js 0.0.2012 → 0.0.2014

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/Step.js CHANGED
@@ -105,9 +105,7 @@ export class Step {
105
105
  }
106
106
  }
107
107
  catch (e) {
108
- if (Step.showLog) {
109
- console.error(`步骤${implnName}执行出错`, e);
110
- }
108
+ console.error(`步骤${implnName}执行出错`, e);
111
109
  //步骤执行出错
112
110
  const errorMsg = JSON.stringify({
113
111
  impl: implnName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assistsx-js",
3
- "version": "0.0.2012",
3
+ "version": "0.0.2014",
4
4
  "description": "assistsx-js自动化开发SDK",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
package/src/Step.ts CHANGED
@@ -153,9 +153,7 @@ export class Step {
153
153
  }
154
154
  }
155
155
  } catch (e: any) {
156
- if (Step.showLog) {
157
- console.error(`步骤${implnName}执行出错`, e);
158
- }
156
+ console.error(`步骤${implnName}执行出错`, e);
159
157
  //步骤执行出错
160
158
  const errorMsg = JSON.stringify({
161
159
  impl: implnName,