ssap_app/node_modules/react-native-screens/ios/utils/RNSLog.h

8 lines
155 B
C

#ifdef RNS_DEBUG_LOGGING
#define RNSLog(...) NSLog(__VA_ARGS__)
#else
// Replace with NOOP
#define RNSLog(...) \
do { \
} while (0)
#endif