@@ -19,7 +19,6 @@ import { Exceptionless } from "https://unpkg.com/@exceptionless/browser";
19
19
20
20
await Exceptionless .startup ((c ) => {
21
21
c .apiKey = " API_KEY_HERE" ;
22
- c .usePersistedQueueStorage = true ;
23
22
c .setUserIdentity (" 12345678" , " Blake" );
24
23
25
24
// set some default data
@@ -48,7 +47,6 @@ import { Exceptionless } from "@exceptionless/node";
48
47
49
48
await Exceptionless .startup ((c ) => {
50
49
c .apiKey = " API_KEY_HERE" ;
51
- c .usePersistedQueueStorage = true ;
52
50
c .setUserIdentity (" 12345678" , " Blake" );
53
51
54
52
// set some default data
@@ -87,7 +85,6 @@ Use one of the following methods to install Exceptionless into your browser appl
87
85
88
86
await Exceptionless .startup ((c ) => {
89
87
c .apiKey = " API_KEY_HERE" ;
90
- c .usePersistedQueueStorage = true ;
91
88
});
92
89
</script >
93
90
```
@@ -102,7 +99,6 @@ Use one of the following methods to install Exceptionless into your browser appl
102
99
103
100
await Exceptionless .startup ((c ) => {
104
101
c .apiKey = " API_KEY_HERE" ;
105
- c .usePersistedQueueStorage = true ;
106
102
});
107
103
```
108
104
@@ -118,7 +114,6 @@ Use this method to install Exceptionless into your Node application:
118
114
119
115
await Exceptionless .startup ((c ) => {
120
116
c .apiKey = " API_KEY_HERE" ;
121
- c .usePersistedQueueStorage = true ;
122
117
});
123
118
```
124
119
@@ -133,7 +128,6 @@ a callback as shown below:
133
128
``` js
134
129
await Exceptionless .startup ((c ) => {
135
130
c .apiKey = " API_KEY_HERE" ;
136
- c .usePersistedQueueStorage = true ;
137
131
});
138
132
```
139
133
0 commit comments