From 70dc86b03a65b6407f609c401ec78a3e68570bc1 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Wed, 15 Feb 2017 14:40:55 -0800 Subject: ART: Remove unintended debug logging Test: m Change-Id: Id6085215d8a9e2d22454894adc3c1e9923e54611 --- runtime/interpreter/unstarted_runtime.cc | 2 -- 1 file changed, 2 deletions(-) (limited to 'runtime/interpreter') diff --git a/runtime/interpreter/unstarted_runtime.cc b/runtime/interpreter/unstarted_runtime.cc index ae2a97880b..66f14b99d8 100644 --- a/runtime/interpreter/unstarted_runtime.cc +++ b/runtime/interpreter/unstarted_runtime.cc @@ -897,13 +897,11 @@ static bool CheckCallers(ShadowFrame* shadow_frame, REQUIRES_SHARED(Locks::mutator_lock_) { for (const std::string& allowed_caller : allowed_call_stack) { if (shadow_frame->GetLink() == nullptr) { - LOG(ERROR) << "Link is unexpectedly null"; return false; } std::string found_caller = ArtMethod::PrettyMethod(shadow_frame->GetLink()->GetMethod()); if (allowed_caller != found_caller) { - LOG(ERROR) << "Non-match: " << allowed_caller << " vs " << found_caller; return false; } -- cgit v1.2.3-59-g8ed1b