Skip to content

Commit

Permalink
Removed "=" which was added temp. for debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
NidhiDixit09 committed Aug 2, 2024
1 parent d5132e4 commit 07ceeac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/BranchSDK/BranchLogger.m
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ + (instancetype)shared {
}

- (BOOL)shouldLog:(BranchLogLevel)level {
if (!self.loggingEnabled || level <= self.logLevelThreshold) {
if (!self.loggingEnabled || level < self.logLevelThreshold) {
return NO;
}
return YES;
Expand Down

0 comments on commit 07ceeac

Please sign in to comment.