Browse Source

ios: always log delegate method calls

master
Saúl Ibarra Corretgé 6 years ago
parent
commit
9352517705
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      ios/app/src/ViewController.m

+ 1
- 1
ios/app/src/ViewController.m View File

@@ -42,11 +42,11 @@
42 42
 
43 43
 - (void)_onJitsiMeetViewDelegateEvent:(NSString *)name
44 44
                              withData:(NSDictionary *)data {
45
-#if DEBUG
46 45
     NSLog(
47 46
         @"[%s:%d] JitsiMeetViewDelegate %@ %@",
48 47
         __FILE__, __LINE__, name, data);
49 48
 
49
+#if DEBUG
50 50
     NSAssert(
51 51
         [NSThread isMainThread],
52 52
         @"JitsiMeetViewDelegate %@ method invoked on a non-main thread",

Loading…
Cancel
Save