You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While upgrading to the exceptionless/react package, we implemented it as we found in the docs:
import { ExceptionlessClient } from 'exceptionless/dist/exceptionless';
const config = {
apiKey: "YOUR API KEY",
serverUrl: "YOUR SELF HOSTED URL",
...
};
const client = new ExceptionlessClient(config);
With this code however, the exceptionless client wouldn't send out new events.
Since the new API you need to call the startup function yourself. So the docs are actually missing the following part:
client.startup();
It may be useful for others to add this extra line to the example in the react docs.
The text was updated successfully, but these errors were encountered:
While upgrading to the exceptionless/react package, we implemented it as we found in the docs:
With this code however, the exceptionless client wouldn't send out new events.
Since the new API you need to call the
startup
function yourself. So the docs are actually missing the following part:It may be useful for others to add this extra line to the example in the react docs.
The text was updated successfully, but these errors were encountered: