Created
November 16, 2016 14:36
-
-
Save andrey-skl/61490dbc3269d89e4ac2e310fe21c554 to your computer and use it in GitHub Desktop.
How to enable logging in production build of React Native app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
#import "RCTLog.h" | |
... | |
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions | |
{ | |
RCTSetLogThreshold(RCTLogLevelInfo); | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!