In src/services/decorators/RetryDecorator.ts in _waitAfterRequestFailure there is a console.error that happens when a request fails and will be retried. My issue with this:
- It isn't really an error as the request is going to be retried and could succeed later. At best is should console.warn
- It can't be disabled. This means that companies who alert based on errors in their server-side logs have to account for it via filters
- It doesn't say "hubspot" anywhere and consequently it can be hard to figure out where the error is coming from
In src/services/decorators/RetryDecorator.ts in _waitAfterRequestFailure there is a console.error that happens when a request fails and will be retried. My issue with this: