Marino Faggiana 8 years ago
parent
commit
8c67146eaf
1 changed files with 0 additions and 4 deletions
  1. 0 4
      iOSClient/AppDelegate.m

+ 0 - 4
iOSClient/AppDelegate.m

@@ -263,10 +263,8 @@
     [application registerUserNotificationSettings:notificationSettings];
     
     // Fabric
-#ifndef DEBUG
     [Fabric with:@[[Crashlytics class]]];
     [self logUserCrashlytics];
-#endif
     
     return YES;
 }
@@ -1577,14 +1575,12 @@
 
 - (void)logUserCrashlytics
 {
-#ifndef DEBUG
     TableAccount *tableAccount = [CCCoreData getActiveAccount];
     
     if (tableAccount) {
         if (tableAccount.email && tableAccount.email.length > 0)
             [CrashlyticsKit setUserEmail:tableAccount.email];
     }
-#endif
 }
 
 #pragma --------------------------------------------------------------------------------------------