We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 549ce21 commit 926f8d8Copy full SHA for 926f8d8
Sources/Tracing/Span.swift
@@ -246,15 +246,12 @@ public enum SpanAttribute: Equatable {
246
#endif
247
248
/// This is a "magic value" that is used to enable the KeyPath based accessors to specific attributes.
249
- /// This value will never be stored or returned, and any attempt of doing so would WILL crash your application.
250
internal static var _namespace: SpanAttribute {
251
return .int(0)
252
}
253
254
internal var anyValue: Any {
255
switch self {
256
- case .string(let value):
257
- return value
258
case .int(let value):
259
return value
260
case .intArray(let value):
0 commit comments