Skip to content

Commit c6368f6

Browse files
committed
Fixes
1 parent 25d3c35 commit c6368f6

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
@@ -372,19 +372,8 @@ export interface BaseReactNativeOptions {
372372
* Represents a log entry from the native SDK.
373373
*/
374374
export interface NativeLogEntry {
375-
/**
376-
* The log level (e.g., 'debug', 'info', 'warning', 'error', 'fatal').
377-
*/
378375
level: string;
379-
380-
/**
381-
* The component or module that emitted the log (e.g., 'Sentry', 'SentryHttpTransport').
382-
*/
383376
component: string;
384-
385-
/**
386-
* The log message.
387-
*/
388377
message: string;
389378
}
390379

0 commit comments

Comments
 (0)