Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: replaced inefficient string logic for sync complete log #425

Merged
merged 3 commits into from
Jan 15, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LaunchDarkly/LaunchDarkly/LDClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -621,9 +621,9 @@ public class LDClient {
}

private func onFlagSyncComplete(result: FlagSyncResult) {
os_log("%s result: %s", log: config.logger, type: .debug, typeName(and: #function), String(describing: result))
switch result {
case let .flagCollection((flagCollection, etag)):
os_log("%s: got flag collection with %d flags.", log: config.logger, type: .debug, typeName(and: #function), flagCollection.flags.count)
let oldStoredItems = flagStore.storedItems
connectionInformation = ConnectionInformation.checkEstablishingStreaming(connectionInformation: connectionInformation)
flagStore.replaceStore(newStoredItems: StoredItems(items: flagCollection.flags))
Expand Down
Loading