Is it possible to put logging statements into AppDelegate.m
which will print out in the Chrome JavaScript debugger console when using React Native?
Asked
Active
Viewed 1,704 times
1

kolistivra
- 4,229
- 9
- 45
- 58
1 Answers
2
You can try the following code:
#import <React/RCTLog.h>
RCTLog(@"Some information");

Kaushik
- 921
- 10
- 18