1

Is it possible to put logging statements into AppDelegate.m which will print out in the Chrome JavaScript debugger console when using React Native?

kolistivra
  • 4,229
  • 9
  • 45
  • 58

1 Answers1

2

You can try the following code:

#import <React/RCTLog.h>

RCTLog(@"Some information");
Kaushik
  • 921
  • 10
  • 18