diff options
author | 2016-09-26 19:45:22 +0000 | |
---|---|---|
committer | 2016-09-26 19:45:23 +0000 | |
commit | a4850b0fa18c8b92dd5c20c166856cfe87aec72f (patch) | |
tree | f38d8d8aae51f53e7ee6b474f47597b784fc2316 /runtime/openjdkjvmti/transform.cc | |
parent | 0cfe19af3b7395658210ea6044a65c9811962a7a (diff) | |
parent | 3fec9ac0d5af1358d216eb2fdc2000ec0205f3f0 (diff) |
Merge "ART: Use libbase logging"
Diffstat (limited to 'runtime/openjdkjvmti/transform.cc')
-rw-r--r-- | runtime/openjdkjvmti/transform.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/openjdkjvmti/transform.cc b/runtime/openjdkjvmti/transform.cc index a0d79f3982..b5622b5cad 100644 --- a/runtime/openjdkjvmti/transform.cc +++ b/runtime/openjdkjvmti/transform.cc @@ -201,8 +201,8 @@ static bool FindDalvikSystemDexFileAndLoaderForClass( art::Handle<art::mirror::Class> loader_class(hs.NewHandle(h_class_loader->GetClass())); // Check if loader is a BaseDexClassLoader if (!loader_class->IsSubClass(base_dex_loader_class.Get())) { - LOG(art::ERROR) << "The classloader is not a BaseDexClassLoader which is currently the only " - << "supported class loader type!"; + LOG(ERROR) << "The classloader is not a BaseDexClassLoader which is currently the only " + << "supported class loader type!"; return false; } art::Handle<art::mirror::Object> path_list( @@ -333,7 +333,7 @@ jvmtiError MoveTransformedFileIntoRuntime(jclass jklass, // Find dalvik.system.DexFile that represents the dex file we are changing. if (!FindDalvikSystemDexFileAndLoaderForClass(klass, &dex_file_ptr, &class_loader_ptr)) { self->TransitionFromRunnableToSuspended(old_state); - LOG(art::ERROR) << "Could not find DexFile."; + LOG(ERROR) << "Could not find DexFile."; return ERR(INTERNAL); } art::Handle<art::mirror::Object> dex_file_obj(hs.NewHandle(dex_file_ptr)); |