Remove profiler log line
This removes a LOG(INFO) saying that the profile is disabled.
Bug: 17166556
(cherry picked from commit b9c3888380666a7b44718f04f787693787cd57c6)
Change-Id: I9c9c470f554605a1183bcf84c5d864f9c4f24f72
diff --git a/runtime/profiler.cc b/runtime/profiler.cc
index 9514448..a6a2475 100644
--- a/runtime/profiler.cc
+++ b/runtime/profiler.cc
@@ -327,7 +327,6 @@
bool BackgroundMethodSamplingProfiler::Start(
const std::string& output_filename, const ProfilerOptions& options) {
if (!options.IsEnabled()) {
- LOG(INFO) << "Profiler disabled. To enable setprop dalvik.vm.profiler 1.";
return false;
}