Top

iOS | supress logs

Comments

1 comment

  • Patrik Spisak

    I disabled logs my way because not sure if there is API or not for this.

    In path:

    Pods/Target Support Files/RainbowSDK

    I have created file:

    RainbowSDK-prefix.pch

    Inside file I have add

    #ifdef __OBJC__

    #import <UIKit/UIKit.h>

    #else

    #ifndef FOUNDATION_EXPORT

    #if defined(__cplusplus)

    #define FOUNDATION_EXPORT extern "C"

    #else

    #define FOUNDATION_EXPORT extern

    #endif

    #endif

    #endif

    #ifndef DEBUG

        #define NSLog(...)

    #endif

    Inside Xcode, I have selected Pods, Targets: RainbowSDK -> Prefix Header Set To:

    Target Support Files/RainbowSDK/RainbowSDK-prefix.pch

    So if I run app as Release all NSLog are disabled. NSLogs should be disabled in production because they are causing performance issues.

    0
    Comment actions Permalink

Please sign in to leave a comment.

Still can't find what you need?

  • Contact Us

    Do you have any question about Rainbow? Leave us a message to get more information.

    Contact
  • Ask the Community

    Do you need help? Ask your questions to the Community and get answers from other Rainbow users.

    Post message