summaryrefslogtreecommitdiffstats
path: root/runtime/runtime.cc
diff options
context:
space:
mode:
authorAnwar Ghuloum <anwarg@google.com>2013-08-13 17:22:14 -0700
committerAnwar Ghuloum <anwarg@google.com>2013-08-13 19:13:59 -0700
commit75a43f10f55e2aa550de51e969cc1e60d583b632 (patch)
tree32667690ae49d1168d8310692af915e497a6a392 /runtime/runtime.cc
parent5e3572709b5a5d59957f835db4f73760ecef08da (diff)
downloadart-75a43f10f55e2aa550de51e969cc1e60d583b632.zip
art-75a43f10f55e2aa550de51e969cc1e60d583b632.tar.gz
art-75a43f10f55e2aa550de51e969cc1e60d583b632.tar.bz2
Clean up logcat spam from compiler and verifier
Moved to VLOG(...), adding verifer tag for VLOG. Change-Id: Ia9ac8aeaf5aa1f4881e384003e82a66e560c5692
Diffstat (limited to 'runtime/runtime.cc')
-rw-r--r--runtime/runtime.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc
index 70d8816..7c354b5 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -365,6 +365,7 @@ Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, b
parsed->sea_ir_mode_ = false;
// 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.jdwp = true; // TODO: don't check this in!
@@ -522,6 +523,8 @@ Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, b
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") {