summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Calvin Pan <calvinpan@google.com> 2022-05-20 01:52:46 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2022-05-20 01:52:46 +0000
commitcdcff91c57f43ae865ef8a8063b707ab2db64eea (patch)
tree1cc812b33b1df6b127024226687facb027b595d5
parent20efd509d846e01cd250abcbfcd515d0f8f2c7be (diff)
parentcb612e4f8b84e1ca3d02b14dea5c465ca3d5dbb6 (diff)
Merge "Avoid printing call stack for the app that doesn't add the LocaleConfig" into tm-dev
-rw-r--r--core/java/android/app/LocaleConfig.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/LocaleConfig.java b/core/java/android/app/LocaleConfig.java
index 7c83d5850f76..bbe3ce3c1cdb 100644
--- a/core/java/android/app/LocaleConfig.java
+++ b/core/java/android/app/LocaleConfig.java
@@ -99,7 +99,7 @@ public class LocaleConfig {
XmlResourceParser parser = res.getXml(resId);
parseLocaleConfig(parser, res);
} catch (Resources.NotFoundException e) {
- Slog.w(TAG, "The resource file pointed to by the given resource ID isn't found.", e);
+ Slog.w(TAG, "The resource file pointed to by the given resource ID isn't found.");
mStatus = STATUS_NOT_SPECIFIED;
} catch (XmlPullParserException | IOException e) {
Slog.w(TAG, "Failed to parse XML configuration from "