I went through my own code and found the following code in one of the files:
#define RCTLog(...) _RCTLog(RCTLogLevelInfo, __VA_ARGS__) #define RCTLogTrace(...) _RCTLog(RCTLogLevelTrace, __VA_ARGS__) #define RCTLogInfo(...) _RCTLog(RCTLogLevelInfo, __VA_ARGS__) #define RCTLogWarn(...) _RCTLog(RCTLogLevelWarning, __VA_ARGS__) #define RCTLogError(...) _RCTLog(RCTLogLevelError, __VA_ARGS__)
I was wondering if there is something similar (in the answer to the native one) for Android. I tried fishing through the reactive code but couldn't find a way to do this. I was wondering if anyone needs to do this for Android.
Can someone please help me with this?
logging reactjs react-native react-native-android react-native-ios
user4122421
source share