Merge "Add space to log." into rvc-dev

This commit is contained in:
TreeHugger Robot
2020-04-21 22:18:48 +00:00
committed by Android (Google) Code Review

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();