Skip to content

Commit

Permalink
commented out loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhengshs committed Sep 16, 2024
1 parent 3ba6b64 commit 1e997a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/Providers/AWSCloudWatchProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ class AWSCloudWatchProvider implements LoggingProvider {
return output;
} catch (err) {
const errString = `failure during log push: ${err}`;
logger.error(errString);
// logger.error(errString);
}
}

Expand Down Expand Up @@ -408,7 +408,7 @@ class AWSCloudWatchProvider implements LoggingProvider {

return sendLogEventsResponse;
} catch (err) {
logger.error(`error during _safeUploadLogEvents: ${err}`);
// logger.error(`error during _safeUploadLogEvents: ${err}`);

if (RETRY_ERROR_CODES.includes(err.name)) {
this._getNewSequenceTokenAndSubmit({
Expand Down

0 comments on commit 1e997a9

Please sign in to comment.