I was going through react native 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 react native) for Android as well. I tried fishing through the react native code, but could not find any way to do it. I was wondering if anyone had to do it for Android.
Can someone please help me with this?