summaryrefslogtreecommitdiff
path: root/runtime/class_linker.cc
diff options
context:
space:
mode:
author Sebastien Hertz <shertz@google.com> 2015-03-03 13:39:30 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-03-03 13:39:31 +0000
commit775f1d4096efce112a3bd1e5897c84f898c5f7ce (patch)
tree44fbce76fdc2114947032cac69ad82aa93aee85c /runtime/class_linker.cc
parentcd93415651b7295d0bda1d37ef72ee99ba953c67 (diff)
parentbd9cf9f6bbf285ec7a5b74ce655a9e68e0f6e434 (diff)
Merge "Follow-up 128393"
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r--runtime/class_linker.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc
index 03c5a1188f..2989b8c6ce 100644
--- a/runtime/class_linker.cc
+++ b/runtime/class_linker.cc
@@ -4241,8 +4241,8 @@ bool ClassLinker::InitializeClass(Thread* self, Handle<mirror::Class> klass,
} else if (Runtime::Current()->IsTransactionAborted()) {
// The exception thrown when the transaction aborted has been caught and cleared
// so we need to throw it again now.
- LOG(WARNING) << "Return from class initializer of " << PrettyDescriptor(klass.Get())
- << " without exception while transaction was aborted: re-throw it now.";
+ VLOG(compiler) << "Return from class initializer of " << PrettyDescriptor(klass.Get())
+ << " without exception while transaction was aborted: re-throw it now.";
Runtime::Current()->ThrowInternalErrorForAbortedTransaction(self);
klass->SetStatus(mirror::Class::kStatusError, self);
success = false;