From 9aae9efe5501e332ce9685c1b97cd02ff9d6d52c Mon Sep 17 00:00:00 2001 From: Santiago Aboy Solanes Date: Thu, 26 Sep 2024 13:57:27 +0100 Subject: 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 --- runtime/class_linker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/class_linker.cc') 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 -- cgit v1.2.3-59-g8ed1b