How to get full error?
stharvey opened this issue · 3 comments
Hello,
This looks like a great tool, thanks for creating it.
I'm trying to show the error line as well as the stack details. I'm probably missing something.
For example the error in the terminal shows:
[Mon May 03 2021 16:10:00.498] ERROR ReferenceError: Can't find variable: profilePic
This error is located at:
in ProfileScreen (at SceneView.tsx:122)
in StaticContainer
in StaticContainer (at SceneView.tsx:115)
in EnsureSingleNavigator (at SceneView.tsx:114)
...etc.
however the error being received by react-native-exception-handler just shows:
in ProfileScreen (at SceneView.tsx:122)
in StaticContainer
in StaticContainer (at SceneView.tsx:115)
in EnsureSingleNavigator (at SceneView.tsx:114)
...etc.
If anyone can give some pointers about what I am doing wrong and how I can get the "ReferenceError: Can't find variable: profilePic" part too please can you let me know.
This is how I am using it:
setJSExceptionHandler((error, isFatal) => {
logError(error, isFatal);
}, true);
setNativeExceptionHandler((error, isFatal) => {;
logError(error, isFatal);
}, true);
And the method logError is saving the error to the database.
Thanks a lot.
Also, other errors are coming through like this:
Warning: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in %s.%s
I'm assuming that I must have something configured wrongly to be seeing "%s.%s" instead of the full error.
Any pointers would be appreciated.
Actually it leaves the message behind in index.js file and only string of calls visible
if (allowed) {
global.ErrorUtils.setGlobalHandler(customHandler);
console.error = (message, error) => global.ErrorUtils.reportError(error); // sending console.error so that it can be caught
} else {
console.log("Skipping setJSExceptionHandler: Reason: In DEV mode and allowedInDevMode = false");
}
Here message leaves behind.