Does debug support React Native remote debugging.
See original GitHub issueShould I set other extra parameters, I didn’t see any output
import {AppRegistry, Platform} from 'react-native';
import debug from 'debug';
const logger = debug('Test');
logger('test')
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Debugging - React Native
You can then select "Debug JS Remotely" from the Developer Menu to start debugging. The debugger will receive a list of all project...
Read more >React Native Debugger: Tips for fast debugging
React Native, by default, supports Chrome DevTools through its remote debugging ability, making it possible to have our favorite debugging ...
Read more >react-native-debugger/debugger-integration.md at master
When you enabled remote debugging, RNDebugger should switched context to RNDebuggerWorker.js automatically, so you can get global variables of React Native ...
Read more >Remote Debugging in React Native - Medium
While React Native provides awesome tools to debug developer builds, the ways in which you can debug in Release Builds are really limited....
Read more >How do you debug React Native? - Stack Overflow
Cmd+D from within the Simulator. It'll popup Chrome and from there you can use the Developer Tools. Edit: This is now linked in...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I want to leave this open for the 5.x release because I get a lot of React Native questions and haven’t used it myself. I want to investigate having some better support.
@ArvoGuo try adding
debug.enable("*")
beforelogger('test')