@@ -19,7 +19,6 @@ import { Exceptionless } from "https://unpkg.com/@exceptionless/browser";
1919
2020await Exceptionless .startup ((c ) => {
2121 c .apiKey = " API_KEY_HERE" ;
22- c .usePersistedQueueStorage = true ;
2322 c .setUserIdentity (" 12345678" , " Blake" );
2423
2524 // set some default data
@@ -48,7 +47,6 @@ import { Exceptionless } from "@exceptionless/node";
4847
4948await Exceptionless .startup ((c ) => {
5049 c .apiKey = " API_KEY_HERE" ;
51- c .usePersistedQueueStorage = true ;
5250 c .setUserIdentity (" 12345678" , " Blake" );
5351
5452 // set some default data
@@ -87,7 +85,6 @@ Use one of the following methods to install Exceptionless into your browser appl
8785
8886 await Exceptionless .startup ((c ) => {
8987 c .apiKey = " API_KEY_HERE" ;
90- c .usePersistedQueueStorage = true ;
9188 });
9289 </script >
9390 ```
@@ -102,7 +99,6 @@ Use one of the following methods to install Exceptionless into your browser appl
10299
103100 await Exceptionless .startup ((c ) => {
104101 c .apiKey = " API_KEY_HERE" ;
105- c .usePersistedQueueStorage = true ;
106102 });
107103 ```
108104
@@ -118,7 +114,6 @@ Use this method to install Exceptionless into your Node application:
118114
119115 await Exceptionless .startup ((c ) => {
120116 c .apiKey = " API_KEY_HERE" ;
121- c .usePersistedQueueStorage = true ;
122117 });
123118 ```
124119
@@ -133,7 +128,6 @@ a callback as shown below:
133128``` js
134129await Exceptionless .startup ((c ) => {
135130 c .apiKey = " API_KEY_HERE" ;
136- c .usePersistedQueueStorage = true ;
137131});
138132```
139133
0 commit comments