diff options
| author | 2020-04-21 22:18:48 +0000 | |
|---|---|---|
| committer | 2020-04-21 22:18:48 +0000 | |
| commit | bdd4f85bcddf3fae07ef9601d266ade76a68b29a (patch) | |
| tree | e744ed8d22e3b9b2efb24ab2c17d2464edf13287 | |
| parent | 3eb14956fdbd06c017ca84eaaec8ee0334445fe5 (diff) | |
| parent | b741258ae10d01876e07ba15797d5e7ba023acf5 (diff) | |
Merge "Add space to log." into rvc-dev
| -rw-r--r-- | services/core/java/com/android/server/TelephonyRegistry.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/TelephonyRegistry.java b/services/core/java/com/android/server/TelephonyRegistry.java index 2bbf27849005..97a5cfe6006d 100644 --- a/services/core/java/com/android/server/TelephonyRegistry.java +++ b/services/core/java/com/android/server/TelephonyRegistry.java @@ -1146,7 +1146,7 @@ public class TelephonyRegistry extends ITelephonyRegistry.Stub { && registrationLimit >= 1 && numRecordsForPid >= registrationLimit) { String errorMsg = "Pid " + callingPid + " has exceeded the number of permissible" - + "registered listeners. Ignoring request to add."; + + " registered listeners. Ignoring request to add."; loge(errorMsg); if (mConfigurationProvider .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 // 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" - + "registered listeners. Now at " + numRecordsForPid); + + " registered listeners. Now at " + numRecordsForPid); } r = new Record(); |