Skip to content

Commit

Permalink
fix: align debug resolve log wording on all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
nickybondarenko committed Dec 3, 2024
1 parent e9f4c27 commit d763b1e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Sources/Confidence/DebugLogger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ internal class DebugLoggerImpl: DebugLogger {
URLQueryItem(name: "flag", value: "flags/\(flagName)"),
URLQueryItem(name: "context", value: "\(ctxNetworkString)"),
]
log(messageLevel: .DEBUG, message: "[Resolve Debug] \(url.url?.absoluteString ?? "N/A")")
log(messageLevel: .DEBUG, message: """
See resolves for \(flagName) in Confidence:
\(url.url?.absoluteString ?? "N/A")
""")
}
}

Expand Down

0 comments on commit d763b1e

Please sign in to comment.