Skip to content

Commit

Permalink
Automatic View Capture: On by default; always (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArielDemarco authored Feb 12, 2025
1 parent fc71fc2 commit 30236b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public struct RemoteConfigPayload: Decodable, Equatable {
sdkEnabledThreshold = 100.0
backgroundSessionThreshold = 0.0
networkSpansForwardingThreshold = 0.0
uiLoadInstrumentationEnabled = false
uiLoadInstrumentationEnabled = true

internalLogsTraceLimit = 0
internalLogsDebugLimit = 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class RemoteConfigPayloadTests: XCTestCase {
XCTAssertEqual(payload.sdkEnabledThreshold, 100)
XCTAssertEqual(payload.backgroundSessionThreshold, 0)
XCTAssertEqual(payload.networkSpansForwardingThreshold, 0)
XCTAssertEqual(payload.uiLoadInstrumentationEnabled, false)
XCTAssertEqual(payload.uiLoadInstrumentationEnabled, true)
XCTAssertEqual(payload.internalLogsTraceLimit, 0)
XCTAssertEqual(payload.internalLogsDebugLimit, 0)
XCTAssertEqual(payload.internalLogsInfoLimit, 0)
Expand All @@ -41,7 +41,7 @@ class RemoteConfigPayloadTests: XCTestCase {
XCTAssertEqual(payload.sdkEnabledThreshold, 50)
XCTAssertEqual(payload.backgroundSessionThreshold, 75)
XCTAssertEqual(payload.networkSpansForwardingThreshold, 25)
XCTAssertEqual(payload.uiLoadInstrumentationEnabled, true)
XCTAssertEqual(payload.uiLoadInstrumentationEnabled, false)
XCTAssertEqual(payload.internalLogsTraceLimit, 10)
XCTAssertEqual(payload.internalLogsDebugLimit, 20)
XCTAssertEqual(payload.internalLogsInfoLimit, 30)
Expand Down Expand Up @@ -75,7 +75,7 @@ class RemoteConfigPayloadTests: XCTestCase {
XCTAssertEqual(payload.sdkEnabledThreshold, 100)
XCTAssertEqual(payload.backgroundSessionThreshold, 0)
XCTAssertEqual(payload.networkSpansForwardingThreshold, 0)
XCTAssertEqual(payload.uiLoadInstrumentationEnabled, false)
XCTAssertEqual(payload.uiLoadInstrumentationEnabled, true)
XCTAssertEqual(payload.internalLogsTraceLimit, 0)
XCTAssertEqual(payload.internalLogsDebugLimit, 0)
XCTAssertEqual(payload.internalLogsInfoLimit, 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"network_span_forwarding": {
"pct_enabled": 25
},
"ui_load_instrumentation_enabled": true,
"ui_load_instrumentation_enabled": false,
"internal_log_limits": {
"trace": 10,
"debug": 20,
Expand Down

0 comments on commit 30236b6

Please sign in to comment.