testaro 2.0.1 → 2.0.2
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/index.js +2 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1132,11 +1132,13 @@ const doScriptOrBatch = async (options, reportTemplate) => {
|
|
|
1132
1132
|
// If there is a batch:
|
|
1133
1133
|
if (options.batch) {
|
|
1134
1134
|
// Perform the script on all the hosts in the batch.
|
|
1135
|
+
console.log('Starting batch');
|
|
1135
1136
|
await doBatch(options, reportTemplate);
|
|
1136
1137
|
}
|
|
1137
1138
|
// Otherwise, i.e. if there is no batch:
|
|
1138
1139
|
else {
|
|
1139
1140
|
// Perform the script.
|
|
1141
|
+
console.log('Starting no-batch script');
|
|
1140
1142
|
await doScript(reportTemplate);
|
|
1141
1143
|
}
|
|
1142
1144
|
// Add an end time to the log.
|