Top

iOS | supress logs

Comentarios

1 comentario

  • 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
    Acciones de comentarios Permalink

Iniciar sesión para dejar un comentario.

  • Pregunte a la Comunidad

    ¿Necesitas ayuda? Haz tus preguntas en la Comunidad para obtener respuestas de otros usuarios de Rainbow.

    Enviar un mensaje.