Skip to content

Commit

Permalink
Ensure log entries are logged as publicly visible text
Browse files Browse the repository at this point in the history
  • Loading branch information
ls-todd-lunter committed May 28, 2024
1 parent 98f8243 commit 4cae86a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GoogleUtilities/Logger/GULLogger.m
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ void GULLogBasic(GULLoggerLevel level,
}
logMsg = [NSString stringWithFormat:@"%@ - %@[%@] %@", sVersion, service, messageCode, logMsg];
dispatch_async(sGULClientQueue, ^{
os_log_with_type(sLogObject, convertLoggerLevel(level), "%@", logMsg);
os_log_with_type(sLogObject, convertLoggerLevel(level), "%{public}@", logMsg);
});
}

Expand Down

0 comments on commit 4cae86a

Please sign in to comment.