File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ export function createTransport(
8686 result => result ,
8787 error => {
8888 if ( error instanceof SentryError ) {
89- __DEBUG_BUILD__ && logger . error ( 'Skipped sending event due to full buffer ' ) ;
89+ __DEBUG_BUILD__ && logger . error ( 'Skipped sending event because buffer is full. ' ) ;
9090 recordEnvelopeLoss ( 'queue_overflow' ) ;
9191 return resolvedSyncPromise ( ) ;
9292 } else {
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export function makePromiseBuffer<T>(limit?: number): PromiseBuffer<T> {
4242 */
4343 function add ( taskProducer : ( ) => PromiseLike < T > ) : PromiseLike < T > {
4444 if ( ! isReady ( ) ) {
45- return rejectedSyncPromise ( new SentryError ( 'Not adding Promise due to buffer limit reached.' ) ) ;
45+ return rejectedSyncPromise ( new SentryError ( 'Not adding Promise because buffer limit was reached.' ) ) ;
4646 }
4747
4848 // start the task and add its promise to the queue
You can’t perform that action at this time.
0 commit comments