mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-14 18:54:52 +00:00
2af025abc3
- DEBUG_LOGS_ENABLED flag enabled everywhere but production - Adjust log level to conditionally show debug and RN logs - PrefixHeader for sending app logs to Testfairy
14 lines
440 B
Plaintext
14 lines
440 B
Plaintext
// PrefixHeader.pch
|
|
|
|
#ifndef PrefixHeader_pch
|
|
#define PrefixHeader_pch
|
|
|
|
// Include any system framework and library headers here that should be included in all compilation units.
|
|
// You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.
|
|
|
|
#endif /* PrefixHeader_pch */
|
|
|
|
#import "TestFairy.h"
|
|
|
|
#define NSLog(s, ...) do { NSLog(s, ##__VA_ARGS__); TFLog(s, ##__VA_ARGS__); } while (0)
|