We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebb2cfb commit b92ff49Copy full SHA for b92ff49
packages/core/src/Providers/AWSCloudWatchProvider.ts
@@ -504,12 +504,9 @@ class AWSCloudWatchProvider implements LoggingProvider {
504
logger.error(
505
`error when calling _safeUploadLogEvents in the timer interval - ${err}`
506
);
507
- logger.error(
508
- `Max retries (${this._maxRetries}) reached. Stopping log uploads.`
509
- );
510
} else if (this._retryCount == this._maxRetries) {
511
512
+ `CloudWatch log upload failed after ${this._maxRetries} attempts. Suppressing further error logs. Upload attempts will continue in the background.`
513
514
}
515
0 commit comments