File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ export abstract class BaseBackend<O extends Options> implements Backend {
93
93
public sendEvent ( event : Event ) : void {
94
94
void this . _transport . sendEvent ( event ) . then ( null , reason => {
95
95
if ( isDebugBuild ( ) ) {
96
- logger . error ( ` Error while sending event:` , reason ) ;
96
+ logger . error ( ' Error while sending event:' , reason ) ;
97
97
}
98
98
} ) ;
99
99
}
@@ -111,7 +111,7 @@ export abstract class BaseBackend<O extends Options> implements Backend {
111
111
112
112
void this . _transport . sendSession ( session ) . then ( null , reason => {
113
113
if ( isDebugBuild ( ) ) {
114
- logger . error ( ` Error while sending session:` , reason ) ;
114
+ logger . error ( ' Error while sending session:' , reason ) ;
115
115
}
116
116
} ) ;
117
117
}
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export class SessionFlusher implements SessionFlusherLike {
39
39
return ;
40
40
}
41
41
void this . _transport . sendSession ( sessionAggregates ) . then ( null , reason => {
42
- logger . error ( ` Error while sending session:` , reason ) ;
42
+ logger . error ( ' Error while sending session:' , reason ) ;
43
43
} ) ;
44
44
}
45
45
Original file line number Diff line number Diff line change @@ -188,6 +188,6 @@ async function finishSentryProcessing(res: AugmentedNextApiResponse): Promise<vo
188
188
await flush ( 2000 ) ;
189
189
logger . log ( 'Done flushing events' ) ;
190
190
} catch ( e ) {
191
- logger . log ( ` Error while flushing events:\n` , e ) ;
191
+ logger . log ( ' Error while flushing events:\n' , e ) ;
192
192
}
193
193
}
You can’t perform that action at this time.
0 commit comments