diff options
author | Brian Carlstrom <bdc@google.com> | 2014-05-08 19:05:29 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2014-05-09 12:23:00 -0700 |
commit | 4d466a8e4587422c989705dce3b2a19e7f0137f5 (patch) | |
tree | bd8f0f45db9a7d5888b14a070690f59fb599bd68 /runtime/parsed_options.cc | |
parent | f1c036fc8fa97617cc42bda44a0adbc7b856d6cd (diff) | |
download | art-4d466a8e4587422c989705dce3b2a19e7f0137f5.zip art-4d466a8e4587422c989705dce3b2a19e7f0137f5.tar.gz art-4d466a8e4587422c989705dce3b2a19e7f0137f5.tar.bz2 |
Remove all LOG(DEBUG) which is not intended to be checked in
Bug: 14632493
Change-Id: Id9da8b87798af0a1b2bd2c178133e5f1ba47d43d
Diffstat (limited to 'runtime/parsed_options.cc')
-rw-r--r-- | runtime/parsed_options.cc | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/runtime/parsed_options.cc b/runtime/parsed_options.cc index 1562527..3c14c23 100644 --- a/runtime/parsed_options.cc +++ b/runtime/parsed_options.cc @@ -223,16 +223,17 @@ bool ParsedOptions::Parse(const Runtime::Options& options, bool ignore_unrecogni // gLogVerbosity.class_linker = true; // TODO: don't check this in! // gLogVerbosity.compiler = true; // TODO: don't check this in! -// gLogVerbosity.verifier = true; // TODO: don't check this in! -// gLogVerbosity.heap = true; // TODO: don't check this in! // gLogVerbosity.gc = true; // TODO: don't check this in! +// gLogVerbosity.heap = true; // TODO: don't check this in! // gLogVerbosity.jdwp = true; // TODO: don't check this in! // gLogVerbosity.jni = true; // TODO: don't check this in! // gLogVerbosity.monitor = true; // TODO: don't check this in! +// gLogVerbosity.profiler = true; // TODO: don't check this in! +// gLogVerbosity.signals = true; // TODO: don't check this in! // gLogVerbosity.startup = true; // TODO: don't check this in! // gLogVerbosity.third_party_jni = true; // TODO: don't check this in! // gLogVerbosity.threads = true; // TODO: don't check this in! -// gLogVerbosity.signals = true; // TODO: don't check this in! +// gLogVerbosity.verifier = true; // TODO: don't check this in! method_trace_ = false; method_trace_file_ = "/data/method-trace-file.bin"; @@ -445,28 +446,30 @@ bool ParsedOptions::Parse(const Runtime::Options& options, bool ignore_unrecogni for (size_t i = 0; i < verbose_options.size(); ++i) { if (verbose_options[i] == "class") { gLogVerbosity.class_linker = true; - } else if (verbose_options[i] == "verifier") { - gLogVerbosity.verifier = true; } else if (verbose_options[i] == "compiler") { gLogVerbosity.compiler = true; - } else if (verbose_options[i] == "heap") { - gLogVerbosity.heap = true; } else if (verbose_options[i] == "gc") { gLogVerbosity.gc = true; + } else if (verbose_options[i] == "heap") { + gLogVerbosity.heap = true; } else if (verbose_options[i] == "jdwp") { gLogVerbosity.jdwp = true; } else if (verbose_options[i] == "jni") { gLogVerbosity.jni = true; } else if (verbose_options[i] == "monitor") { gLogVerbosity.monitor = true; + } else if (verbose_options[i] == "profiler") { + gLogVerbosity.profiler = true; + } else if (verbose_options[i] == "signals") { + gLogVerbosity.signals = true; } else if (verbose_options[i] == "startup") { gLogVerbosity.startup = true; } else if (verbose_options[i] == "third-party-jni") { gLogVerbosity.third_party_jni = true; } else if (verbose_options[i] == "threads") { gLogVerbosity.threads = true; - } else if (verbose_options[i] == "signals") { - gLogVerbosity.signals = true; + } else if (verbose_options[i] == "verifier") { + gLogVerbosity.verifier = true; } else { Usage("Unknown -verbose option %s\n", verbose_options[i].c_str()); return false; |