aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Database/Core/FPersistentConnection.m
diff options
context:
space:
mode:
Diffstat (limited to 'Firebase/Database/Core/FPersistentConnection.m')
-rw-r--r--Firebase/Database/Core/FPersistentConnection.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/Firebase/Database/Core/FPersistentConnection.m b/Firebase/Database/Core/FPersistentConnection.m
index 5f4de76..643f9b4 100644
--- a/Firebase/Database/Core/FPersistentConnection.m
+++ b/Firebase/Database/Core/FPersistentConnection.m
@@ -703,7 +703,8 @@ static void reachabilityCallback(SCNetworkReachabilityRef ref, SCNetworkReachabi
if ([warningsArr containsObject:@"no_index"]) {
NSString *indexSpec = [NSString stringWithFormat:@"\".indexOn\": \"%@\"", [query.params.index queryDefinition]];
NSString *indexPath = [query.path description];
- FFWarn(@"I-RDB034028", @"Using an unspecified index. Consider adding %@ at %@ to your security rules for better performance", indexSpec, indexPath);
+ FFWarn(@"I-RDB034028", @"Using an unspecified index. Your data will be downloaded and filtered on the client. "
+ "Consider adding %@ at %@ to your security rules for better performance", indexSpec, indexPath);
}
}
}