@@ -19,7 +19,7 @@ function captureLog(
1919}
2020
2121/**
22- * @summary Capture a log with the `trace` level. Requires `_experiments. enableLogs` to be enabled.
22+ * @summary Capture a log with the `trace` level. Requires the ` enableLogs` option to be enabled.
2323 *
2424 * @param message - The message to log.
2525 * @param attributes - Arbitrary structured data that stores information about the log - e.g., { userId: 100, route: '/dashboard' }.
@@ -48,7 +48,7 @@ export function trace(message: ParameterizedString, attributes?: Log['attributes
4848}
4949
5050/**
51- * @summary Capture a log with the `debug` level. Requires `_experiments. enableLogs` to be enabled.
51+ * @summary Capture a log with the `debug` level. Requires the ` enableLogs` option to be enabled.
5252 *
5353 * @param message - The message to log.
5454 * @param attributes - Arbitrary structured data that stores information about the log - e.g., { component: 'Header', state: 'loading' }.
@@ -78,7 +78,7 @@ export function debug(message: ParameterizedString, attributes?: Log['attributes
7878}
7979
8080/**
81- * @summary Capture a log with the `info` level. Requires `_experiments. enableLogs` to be enabled.
81+ * @summary Capture a log with the `info` level. Requires the ` enableLogs` option to be enabled.
8282 *
8383 * @param message - The message to log.
8484 * @param attributes - Arbitrary structured data that stores information about the log - e.g., { feature: 'checkout', status: 'completed' }.
@@ -108,7 +108,7 @@ export function info(message: ParameterizedString, attributes?: Log['attributes'
108108}
109109
110110/**
111- * @summary Capture a log with the `warn` level. Requires `_experiments. enableLogs` to be enabled.
111+ * @summary Capture a log with the `warn` level. Requires the ` enableLogs` option to be enabled.
112112 *
113113 * @param message - The message to log.
114114 * @param attributes - Arbitrary structured data that stores information about the log - e.g., { browser: 'Chrome', version: '91.0' }.
@@ -139,7 +139,7 @@ export function warn(message: ParameterizedString, attributes?: Log['attributes'
139139}
140140
141141/**
142- * @summary Capture a log with the `error` level. Requires `_experiments. enableLogs` to be enabled.
142+ * @summary Capture a log with the `error` level. Requires the ` enableLogs` option to be enabled.
143143 *
144144 * @param message - The message to log.
145145 * @param attributes - Arbitrary structured data that stores information about the log - e.g., { error: 'NetworkError', url: '/api/data' }.
@@ -171,7 +171,7 @@ export function error(message: ParameterizedString, attributes?: Log['attributes
171171}
172172
173173/**
174- * @summary Capture a log with the `fatal` level. Requires `_experiments. enableLogs` to be enabled.
174+ * @summary Capture a log with the `fatal` level. Requires the ` enableLogs` option to be enabled.
175175 *
176176 * @param message - The message to log.
177177 * @param attributes - Arbitrary structured data that stores information about the log - e.g., { appState: 'corrupted', sessionId: 'abc-123' }.
0 commit comments