Skip to content

Commit

Permalink
remove change to log message
Browse files Browse the repository at this point in the history
  • Loading branch information
parsons90 committed Feb 14, 2024
1 parent a249242 commit 5ced153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure/blobs_logs_monitoring/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class HTTPClient {
var resolvedPromises = await Promise.all(
promises.map(p => p.catch(e => this.context.log.error(e)))
);
this.context.log(`Num batches sent (including retries): ${this.numBatchesSent}. Num batches retried: ${this.numBatchesRetried}`); // Log the counter after all promises have resolved
this.context.log(`Num batches sent: ${this.numBatchesSent}. Num batches retried: ${this.numBatchesRetried}`); // Log the counter after all promises have resolved
return resolvedPromises;
}

Expand Down

0 comments on commit 5ced153

Please sign in to comment.