We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e58c9b commit 5ca9da0Copy full SHA for 5ca9da0
packages/core/ios/RNSentry.mm
@@ -166,7 +166,7 @@ - (SentryOptions *_Nullable)createOptionsWithDictionary:(NSDictionary *_Nonnull)
166
if ([mutableOptions valueForKey:@"spotlight"] != nil) {
167
id spotlightValue = [mutableOptions valueForKey:@"spotlight"];
168
if ([spotlightValue isKindOfClass:[NSString class]]) {
169
- NSLog(@"The value is a string: %@", spotlightValue);
+ NSLog(@"Using Spotlight on address: %@", spotlightValue);
170
sentryOptions.enableSpotlight = true;
171
sentryOptions.spotlightUrl = spotlightValue;
172
} else if ([spotlightValue isKindOfClass:[NSNumber class]]) {
0 commit comments