Merge "Add space to log." into rvc-dev am: bdd4f85bcd am: eba71e8fa3

Change-Id: I89bf5344b84e12427ffe3293f2bd7e6cd638fb1d
This commit is contained in:
TreeHugger Robot
2020-04-21 22:29:59 +00:00
committed by Automerger Merge Worker

View File

@@ -1146,7 +1146,7 @@ public class TelephonyRegistry extends ITelephonyRegistry.Stub {
&& registrationLimit >= 1 && registrationLimit >= 1
&& numRecordsForPid >= registrationLimit) { && numRecordsForPid >= registrationLimit) {
String errorMsg = "Pid " + callingPid + " has exceeded the number of permissible" String errorMsg = "Pid " + callingPid + " has exceeded the number of permissible"
+ "registered listeners. Ignoring request to add."; + " registered listeners. Ignoring request to add.";
loge(errorMsg); loge(errorMsg);
if (mConfigurationProvider if (mConfigurationProvider
.isRegistrationLimitEnabledInPlatformCompat(callingUid)) { .isRegistrationLimitEnabledInPlatformCompat(callingUid)) {
@@ -1157,7 +1157,7 @@ public class TelephonyRegistry extends ITelephonyRegistry.Stub {
// Log the warning independently of the dynamically set limit -- apps shouldn't be // Log the warning independently of the dynamically set limit -- apps shouldn't be
// doing this regardless of whether we're throwing them an exception for it. // doing this regardless of whether we're throwing them an exception for it.
Rlog.w(TAG, "Pid " + callingPid + " has exceeded half the number of permissible" Rlog.w(TAG, "Pid " + callingPid + " has exceeded half the number of permissible"
+ "registered listeners. Now at " + numRecordsForPid); + " registered listeners. Now at " + numRecordsForPid);
} }
r = new Record(); r = new Record();