Skip to content

Commit ab92830

Browse files
committed
Fixes
1 parent 0995992 commit ab92830

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

packages/core/ios/RNSentryNativeLogsForwarder.h

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,10 @@ NS_ASSUME_NONNULL_BEGIN
99
*/
1010
@interface RNSentryNativeLogsForwarder : NSObject
1111

12-
/**
13-
* Returns the shared instance of the logs forwarder.
14-
*/
1512
+ (instancetype)shared;
1613

17-
/**
18-
* Configures the forwarder with the event emitter to use for sending events to JS.
19-
* Call this when the React Native module starts observing events.
20-
*
21-
* @param emitter The RCTEventEmitter instance (typically the RNSentry module).
22-
*/
2314
- (void)configureWithEventEmitter:(RCTEventEmitter *)emitter;
2415

25-
/**
26-
* Clears the event emitter reference.
27-
* Call this when the React Native module stops observing events.
28-
*/
2916
- (void)stopForwarding;
3017

3118
@end

packages/core/src/js/options.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -385,19 +385,8 @@ export interface BaseReactNativeOptions {
385385
* Represents a log entry from the native SDK.
386386
*/
387387
export interface NativeLogEntry {
388-
/**
389-
* The log level (e.g., 'debug', 'info', 'warning', 'error', 'fatal').
390-
*/
391388
level: string;
392-
393-
/**
394-
* The component or module that emitted the log (e.g., 'Sentry', 'SentryHttpTransport').
395-
*/
396389
component: string;
397-
398-
/**
399-
* The log message.
400-
*/
401390
message: string;
402391
}
403392

0 commit comments

Comments
 (0)