Skip to content

Commit

Permalink
Fix filtering check
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewheard committed Jul 19, 2023
1 parent d74b3e4 commit 2fa6c22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AppCheck/Sources/Core/GACAppCheckLogger.m
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
void GACAppCheckLog(GACAppCheckMessageCode code, GACAppCheckLogLevel logLevel, NSString *message) {
// Don't log anything in not debug builds.
#if !NDEBUG
if (logLevel >= gGACAppCheckLogLevel) {
if (logLevel <= gGACAppCheckLogLevel) {
NSLog(@"<%@> [AppCheckCore][%@] %@", GACAppCheckLoggerLevelEnumToString(logLevel),
GACAppCheckMessageCodeEnumToString(code), message);
}
Expand Down

0 comments on commit 2fa6c22

Please sign in to comment.