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
Copy file name to clipboardExpand all lines: Sources/Swift/Integrations/Performance/IO/Data+SentryTracing.swift
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ public extension Data {
13
13
///
14
14
/// - Important: Using this method with auto-instrumentation for file operations enabled can lead to duplicate spans on older operating system versions.
15
15
/// It is recommended to use either automatic or manual instrumentation. You can disable automatic instrumentation by setting
16
-
/// `options.experimental.enableDataSwizzling` to `false` when initializing Sentry.
16
+
/// `options.enableDataSwizzling` to `false` when initializing Sentry.
17
17
/// - Parameters:
18
18
/// - url: The location on disk of the data to read.
19
19
/// - options: The mask specifying the options to use when reading the data. For more information, see ``NSData.ReadingOptions``.
@@ -44,7 +44,7 @@ public extension Data {
44
44
///
45
45
/// - Important: Using this method with auto-instrumentation for file operations enabled can lead to duplicate spans on older operating system versions.
46
46
/// It is recommended to use either automatic or manual instrumentation. You can disable automatic instrumentation by setting
47
-
/// `options.experimental.enableDataSwizzling` to `false` when initializing Sentry.
47
+
/// `options.enableDataSwizzling` to `false` when initializing Sentry.
48
48
/// - Parameters:
49
49
/// - url: The location to write the data into.
50
50
/// - options: Options for writing the data. Default value is `[]`.
Copy file name to clipboardExpand all lines: Sources/Swift/Integrations/Performance/IO/FileManager+SentryTracing.swift
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ public extension FileManager {
14
14
///
15
15
/// - Important: Using this method with auto-instrumentation for file operations enabled can lead to duplicate spans on older operating system versions.
16
16
/// It is recommended to use either automatic or manual instrumentation. You can disable automatic instrumentation by setting
17
-
/// `options.experimental.enableFileManagerSwizzling` to `false` when initializing Sentry.
17
+
/// `options.enableFileManagerSwizzling` to `false` when initializing Sentry.
18
18
/// - Parameters:
19
19
/// - path: The path for the new file.
20
20
/// - data: A data object containing the contents of the new file.
@@ -48,7 +48,7 @@ public extension FileManager {
48
48
///
49
49
/// - Important: Using this method with auto-instrumentation for file operations enabled can lead to duplicate spans on older operating system versions.
50
50
/// It is recommended to use either automatic or manual instrumentation. You can disable automatic instrumentation by setting
51
-
/// `options.experimental.enableFileManagerSwizzling` to `false` when initializing Sentry.
51
+
/// `options.enableFileManagerSwizzling` to `false` when initializing Sentry.
52
52
/// - Parameter url: A file URL specifying the file or directory to remove.
53
53
/// If the URL specifies a directory, the contents of that directory are recursively removed.
54
54
/// - Note: See ``FileManager.removeItem(at:)`` for more information.
@@ -73,7 +73,7 @@ public extension FileManager {
73
73
///
74
74
/// - Important: Using this method with auto-instrumentation for file operations enabled can lead to duplicate spans on older operating system versions.
75
75
/// It is recommended to use either automatic or manual instrumentation. You can disable automatic instrumentation by setting
76
-
/// `options.experimental.enableFileManagerSwizzling` to `false` when initializing Sentry.
76
+
/// `options.enableFileManagerSwizzling` to `false` when initializing Sentry.
77
77
/// - Parameter path: A path string indicating the file or directory to remove.
78
78
/// If the path specifies a directory, the contents of that directory are recursively removed.
79
79
/// - Note: See ``FileManager.removeItem(atPath:)`` for more information.
@@ -100,7 +100,7 @@ public extension FileManager {
100
100
///
101
101
/// - Important: Using this method with auto-instrumentation for file operations enabled can lead to duplicate spans on older operating system versions.
102
102
/// It is recommended to use either automatic or manual instrumentation. You can disable automatic instrumentation by setting
103
-
/// `options.experimental.enableFileManagerSwizzling` to `false` when initializing Sentry.
103
+
/// `options.enableFileManagerSwizzling` to `false` when initializing Sentry.
104
104
/// - Parameters:
105
105
/// - srcURL: The file URL that identifies the file you want to copy.
106
106
/// The URL in this parameter must not be a file reference URL.
@@ -128,7 +128,7 @@ public extension FileManager {
128
128
///
129
129
/// - Important: Using this method with auto-instrumentation for file operations enabled can lead to duplicate spans on older operating system versions.
130
130
/// It is recommended to use either automatic or manual instrumentation. You can disable automatic instrumentation by setting
131
-
/// `options.experimental.enableFileManagerSwizzling` to `false` when initializing Sentry.
131
+
/// `options.enableFileManagerSwizzling` to `false` when initializing Sentry.
132
132
/// - Parameters:
133
133
/// - srcPath: The path to the file or directory you want to move.
134
134
/// - dstPath: The path at which to place the copy of `srcPath`.
@@ -155,7 +155,7 @@ public extension FileManager {
155
155
///
156
156
/// - Important: Using this method with auto-instrumentation for file operations enabled can lead to duplicate spans on older operating system versions.
157
157
/// It is recommended to use either automatic or manual instrumentation. You can disable automatic instrumentation by setting
158
-
/// `options.experimental.enableFileManagerSwizzling` to `false` when initializing Sentry.
158
+
/// `options.enableFileManagerSwizzling` to `false` when initializing Sentry.
159
159
/// - Parameters:
160
160
/// - srcURL: The file URL that identifies the file or directory you want to move.
161
161
/// The URL in this parameter must not be a file reference URL.
@@ -188,7 +188,7 @@ public extension FileManager {
188
188
///
189
189
/// - Important: Using this method with auto-instrumentation for file operations enabled can lead to duplicate spans on older operating system versions.
190
190
/// It is recommended to use either automatic or manual instrumentation. You can disable automatic instrumentation by setting
191
-
/// `options.experimental.enableFileManagerSwizzling` to `false` when initializing Sentry.
191
+
/// `options.enableFileManagerSwizzling` to `false` when initializing Sentry.
192
192
/// - Parameters:
193
193
/// - srcPath: The path to the file or directory you want to move.
194
194
/// - dstPath: The new path for the item in `srcPath`.
0 commit comments