@@ -5,10 +5,10 @@ import {
5
5
6
6
import { BrowserGlobalHandlerPlugin } from "./plugins/BrowserGlobalHandlerPlugin.js" ;
7
7
import { BrowserLifeCyclePlugin } from "./plugins/BrowserLifeCyclePlugin.js" ;
8
- import { BrowserWrapFunctions } from "./plugins/BrowserWrapFunctions.js" ;
9
8
import { BrowserModuleInfoPlugin } from "./plugins/BrowserModuleInfoPlugin.js" ;
9
+ import { BrowserRequestInfoPlugin } from "./plugins/BrowserRequestInfoPlugin.js" ;
10
+ import { BrowserWrapFunctions } from "./plugins/BrowserWrapFunctions.js" ;
10
11
import { BrowserErrorParser } from "./services/BrowserErrorParser.js" ;
11
- import { BrowserRequestInfoCollector } from "./services/BrowserRequestInfoCollector.js" ;
12
12
import { BrowserLocalStorage } from "./storage/BrowserLocalStorage.js" ;
13
13
import { BrowserFetchSubmissionClient } from "./submission/BrowserFetchSubmissionClient.js" ;
14
14
@@ -18,13 +18,13 @@ export class BrowserExceptionlessClient extends ExceptionlessClient {
18
18
if ( configurationOrApiKey ) {
19
19
config . services . storage = new BrowserLocalStorage ( ) ;
20
20
config . services . errorParser = new BrowserErrorParser ( ) ;
21
- config . services . requestInfoCollector = new BrowserRequestInfoCollector ( ) ;
22
21
config . services . submissionClient = new BrowserFetchSubmissionClient ( config ) ;
23
22
24
23
config . addPlugin ( new BrowserGlobalHandlerPlugin ( ) ) ;
25
24
config . addPlugin ( new BrowserLifeCyclePlugin ( ) ) ;
26
- config . addPlugin ( new BrowserWrapFunctions ( ) ) ;
27
25
config . addPlugin ( new BrowserModuleInfoPlugin ( ) ) ;
26
+ config . addPlugin ( new BrowserRequestInfoPlugin ( ) ) ;
27
+ config . addPlugin ( new BrowserWrapFunctions ( ) ) ;
28
28
}
29
29
30
30
await super . startup ( configurationOrApiKey ) ;
0 commit comments