Remove incorrect LOG(INFO).

Change-Id: Ied2808806dabc03e115402e8a453ce57c1318693
diff --git a/src/dex2oat.cc b/src/dex2oat.cc
index 65283bd..d5d036f 100644
--- a/src/dex2oat.cc
+++ b/src/dex2oat.cc
@@ -632,8 +632,6 @@
 
     elf_filename = elf_filename_sp.ToString() + ".elf";
   }
-
-  LOG(INFO) << "ELF output: " << elf_filename;
 #endif
 
   Runtime::Options options;
@@ -716,12 +714,6 @@
 
   // We wrote the oat file successfully, and want to keep it.
   LOG(INFO) << "Oat file written successfully: " << oat_filename;
-#if defined(ART_USE_LLVM_COMPILER)
-  LOG(INFO) << "ELF file written successfully: " << elf_filename;
-  if (!bitcode_filename.empty()) {
-    LOG(INFO) << "Bitcode file written successfully: " << bitcode_filename;
-  }
-#endif
   LOG(INFO) << "Image written successfully: " << image_filename;
   return EXIT_SUCCESS;
 }