You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: start time warning log now uses float wildcard for string interpolation of time interval (#393)
**Requirements**
- [ ] I have added test coverage for new or changed functionality
N/A
- [x] I have followed the repository's [pull request submission
guidelines](../blob/v9/CONTRIBUTING.md#submitting-pull-requests)
- [ ] I have validated my changes against all supported platform
versions
I do not have a Mac with Apple Silicon which was the original source of
this report, will have to have customer verify.
**Related issues**
SC-246543
os_log("%s LDClient.identify was called with a timeout greater than %d seconds. We recommend a timeout of less than %s seconds.", log: config.logger, type:.debug,self.typeName(and: #function),LDClient.longTimeoutInterval,LDClient.longTimeoutInterval)
358
+
os_log("%s LDClient.identify was called with a timeout greater than %f seconds. We recommend a timeout of less than %f seconds.", log: config.logger, type:.info,self.typeName(and: #function),LDClient.longTimeoutInterval,LDClient.longTimeoutInterval)
if startWaitSeconds >LDClient.longTimeoutInterval {
792
-
os_log("%s LDClient.start was called with a timeout greater than %d seconds. We recommend a timeout of less than %s seconds.", log: config.logger, type:.debug,self.typeName(and: #function),LDClient.longTimeoutInterval,LDClient.longTimeoutInterval)
792
+
os_log("%s LDClient.start was called with a timeout greater than %f seconds. We recommend a timeout of less than %f seconds.", log: config.logger, type:.info,self.typeName(and: #function),LDClient.longTimeoutInterval,LDClient.longTimeoutInterval)
0 commit comments