Unable to symbolicate stack trace from error object #1494
Unanswered
sLurPPPeRsTaR
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
herewith my code
import Reactotron, {
networking,
trackGlobalErrors,
openInEditor,
} from 'reactotron-react-native';
import sagaPlugin from 'reactotron-redux-saga';
import apisaucePlugin from 'reactotron-apisauce';
import { reactotronRedux } from 'reactotron-redux';
import AsyncStorage from '@react-native-async-storage/async-storage';
import { DISPLAY_NAME } from 'kd-utils/constant';
Reactotron.configure({ name: DISPLAY_NAME })
.setAsyncStorageHandler(AsyncStorage)
.useReactNative()
.use(sagaPlugin())
.use(openInEditor())
.use(apisaucePlugin())
.use(trackGlobalErrors())
.use(networking())
.use(reactotronRedux())
.connect();
const yeOldeConsoleLog = console.log;
console.log = (...args) => {
yeOldeConsoleLog(...args);
Reactotron.display({
name: 'YOUR CONSOLE.LOG',
value: args,
preview: args.length > 0 && typeof args[0] === 'string' ? args[0] : null,
});
};
export default Reactotron;
is there any solution for this? my expected is this error also include in reactotron
Beta Was this translation helpful? Give feedback.
All reactions