Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
Blake Niemyjski edited this pageDec 19, 2016 ·1 revision

If your events aren’t being sent to the server there are a few things that you can try to diagnose the issue.

Update Your Client

Please make sure that you are using the latest version of the client.

Ensure the Queue has Time to Process

If you are using Exceptionless in a scenario where an event is submitted and the process is immediately terminated, then you will need to make sure that the queue is processed before the application ends. Please note that the client will try to do this automatically.

Events are queued and sent in the background, if the application isn’t running then the events cannot be sent. You can manually force the queue to be processed by calling the following line of code before before the process ends:

JavaScript

exceptionless.ExceptionlessClient.default.config.queue.process();

Node.js

varclient=require('exceptionless').ExceptionlessClient.default;client.config.queue.process();

This will cause the event queue to be processed asynchronously and the events to be reported. If this doesn’t solve the issue then please enable client logging and send us the log file. You can also attempt to pass true toprocess(true) to try and process the queue synchronously.Please note that sending synchronously depends on specific api's that may not be available, so it may not send synchronously.

Enable Client Logging

The Exceptionless client can be configured to write diagnostic messages to the console to help diagnose any issues with the client.

JavaScript

exceptionless.ExceptionlessClient.default.config.useDebugLogger();

Node.js

varclient=require('exceptionless').ExceptionlessClient.default;client.config.useDebugLogger();

Debugging Source Code

You can also debug the Exceptionless source code by using the unmagnified version and set breakpoints in your browsers developer tools.

Not What You're Looking For?

Looking forGeneral Exceptionless Documentation,UI Documentation, orDocumentation for another Client?

Visit the Primary Exceptionless Documentation Page and go from there.

Clone this wiki locally


[8]ページ先頭

©2009-2025 Movatter.jp