summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
author Marybeth Fair <marybethfair@google.com> 2025-03-18 06:41:01 -0700
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-03-18 06:41:01 -0700
commitc6d72bd911a2b71933bbac0345e6f8a604bbe12e (patch)
treefc3a5d433e91680c797ccfaa0060982e0706589c /tools
parent4895bb75fd3b51547404af1dee29429be0a57e92 (diff)
parent2e9ae2bea0781b53043d2009127aeb5b30121c29 (diff)
Merge "aconfig: add more detailed logs for errors" into main
Diffstat (limited to 'tools')
-rw-r--r--tools/aconfig/aconfig_storage_read_api/srcs/android/os/flagging/PlatformAconfigPackage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aconfig/aconfig_storage_read_api/srcs/android/os/flagging/PlatformAconfigPackage.java b/tools/aconfig/aconfig_storage_read_api/srcs/android/os/flagging/PlatformAconfigPackage.java
index 63baf9e844..3dd24b211a 100644
--- a/tools/aconfig/aconfig_storage_read_api/srcs/android/os/flagging/PlatformAconfigPackage.java
+++ b/tools/aconfig/aconfig_storage_read_api/srcs/android/os/flagging/PlatformAconfigPackage.java
@@ -120,11 +120,11 @@ public class PlatformAconfigPackage {
return aconfigPackage;
} catch (AconfigStorageException e) {
throw new AconfigStorageReadException(
- e.getErrorCode(), "Fail to create AconfigPackage", e);
+ e.getErrorCode(), "Fail to create PlatformAconfigPackage: " + packageName, e);
} catch (Exception e) {
throw new AconfigStorageReadException(
AconfigStorageReadException.ERROR_GENERIC,
- "Fail to create PlatformAconfigPackage",
+ "Fail to create PlatformAconfigPackage: " + packageName,
e);
}
}