commit | 9d46ae8dc528c980dc7e2fe043dad04a2b12ebbf | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Fri Feb 26 04:35:03 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Feb 26 04:35:03 2021 +0000 |
tree | 3305d3b61d1d82de1a0c07fcbd0637f270f95420 | |
parent | 63d9b79a5490ece66f6471cb6144f9747354fa29 [diff] | |
parent | f8a4c39c39f4d59b7c180f0dd964014dd28018ca [diff] |
Merge "Make installd log A/B missing artifacts" am: 7dad29dc9a am: f8a4c39c39 Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1607279 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ib2a5bb256afdf6756c74287f34ed3423894c007e
diff --git a/cmds/installd/dexopt.cpp b/cmds/installd/dexopt.cpp index 4dfd1d0..0cf50a3 100644 --- a/cmds/installd/dexopt.cpp +++ b/cmds/installd/dexopt.cpp
@@ -2112,8 +2112,9 @@ { struct stat s; if (stat(b_path.c_str(), &s) != 0) { - // Silently ignore for now. The service calling this isn't smart enough to understand - // lack of artifacts at the moment. + // Ignore for now. The service calling this isn't smart enough to + // understand lack of artifacts at the moment. + LOG(VERBOSE) << "A/B artifact " << b_path << " does not exist!"; return false; } if (!S_ISREG(s.st_mode)) {