diff options
author | 2024-09-26 13:57:27 +0100 | |
---|---|---|
committer | 2024-09-27 14:32:24 +0000 | |
commit | 9aae9efe5501e332ce9685c1b97cd02ff9d6d52c (patch) | |
tree | e7eab49296105e122f132e3e11e78eb9934e0eb0 /runtime/class_linker.cc | |
parent | 871b53457d80d87c548998882626f62b506b25a8 (diff) |
Fix spacing in verbose logging
It used to print things like `: 0( NotReady)` and now it
will print them, like `: 0 (NotReady)` which is more readable.
Change-Id: I81773bd64d56444be4efd984ce3eb752bdd2df84
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index c7fbf59420..cad968dfc2 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -5056,7 +5056,7 @@ verifier::FailureKind ClassLinker::VerifyClass(Thread* self, << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8() << ": " << preverified - << "( " << oat_file_class_status << ")"; + << " (" << oat_file_class_status << ")"; // If the oat file says the class had an error, re-run the verifier. That way we will either: // 1) Be successful at runtime, or |