diff options
author | Alex Buynytskyy <alexbuy@google.com> | 2021-05-12 13:25:38 -0700 |
---|---|---|
committer | Alex Buynytskyy <alexbuy@google.com> | 2021-05-13 12:28:58 -0700 |
commit | 98a3c8fffffc468a5a4943f40a966e7cdc9b5619 (patch) | |
tree | b3a68f98abb185527e5f3c18f20cc75a1569bb9e /services/incremental/IncrementalService.cpp | |
parent | b5ddeefc099ca947320e2ac8b973ed06d10d37a1 (diff) |
Duplicate apk names on package update.
+minor fixes
Bug: 187710420
Test: atest PackageManagerShellCommandTest PackageManagerShellCommandIncrementalTest
Change-Id: Iced479532b38bddcd8655df3ce08611434965cf4
Diffstat (limited to 'services/incremental/IncrementalService.cpp')
-rw-r--r-- | services/incremental/IncrementalService.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/services/incremental/IncrementalService.cpp b/services/incremental/IncrementalService.cpp index 24699d9dc9d8..8b816d02026f 100644 --- a/services/incremental/IncrementalService.cpp +++ b/services/incremental/IncrementalService.cpp @@ -1174,7 +1174,8 @@ int IncrementalService::makeFile(StorageId storage, std::string_view path, int m return -EINVAL; } if (auto err = mIncFs->makeFile(ifs->control, normPath, mode, id, params); err) { - LOG(ERROR) << "Internal error: storageId " << storage << " failed to makeFile: " << err; + LOG(ERROR) << "Internal error: storageId " << storage << " failed to makeFile [" << normPath + << "]: " << err; return err; } if (params.size > 0) { |