From 5ca9da0cf92423fc5f635ae57638b8a4f95380a3 Mon Sep 17 00:00:00 2001 From: Antonis Lilis Date: Thu, 31 Oct 2024 16:28:11 +0200 Subject: [PATCH] Update log message to communicate the custom spotlight url used clearly Co-authored-by: LucasZF --- packages/core/ios/RNSentry.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/ios/RNSentry.mm b/packages/core/ios/RNSentry.mm index f7c04771f..98bb3e5ae 100644 --- a/packages/core/ios/RNSentry.mm +++ b/packages/core/ios/RNSentry.mm @@ -166,7 +166,7 @@ - (SentryOptions *_Nullable)createOptionsWithDictionary:(NSDictionary *_Nonnull) if ([mutableOptions valueForKey:@"spotlight"] != nil) { id spotlightValue = [mutableOptions valueForKey:@"spotlight"]; if ([spotlightValue isKindOfClass:[NSString class]]) { - NSLog(@"The value is a string: %@", spotlightValue); + NSLog(@"Using Spotlight on address: %@", spotlightValue); sentryOptions.enableSpotlight = true; sentryOptions.spotlightUrl = spotlightValue; } else if ([spotlightValue isKindOfClass:[NSNumber class]]) {