summaryrefslogtreecommitdiffstats
path: root/runtime/base/logging.h
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-05-08 19:05:29 -0700
committerBrian Carlstrom <bdc@google.com>2014-05-09 12:23:00 -0700
commit4d466a8e4587422c989705dce3b2a19e7f0137f5 (patch)
treebd8f0f45db9a7d5888b14a070690f59fb599bd68 /runtime/base/logging.h
parentf1c036fc8fa97617cc42bda44a0adbc7b856d6cd (diff)
downloadart-4d466a8e4587422c989705dce3b2a19e7f0137f5.tar.gz
art-4d466a8e4587422c989705dce3b2a19e7f0137f5.tar.bz2
art-4d466a8e4587422c989705dce3b2a19e7f0137f5.zip
Remove all LOG(DEBUG) which is not intended to be checked in
Bug: 14632493 Change-Id: Id9da8b87798af0a1b2bd2c178133e5f1ba47d43d
Diffstat (limited to 'runtime/base/logging.h')
-rw-r--r--runtime/base/logging.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/base/logging.h b/runtime/base/logging.h
index c4461fab07..6944278da4 100644
--- a/runtime/base/logging.h
+++ b/runtime/base/logging.h
@@ -286,17 +286,18 @@ class ToStr {
// and the "-verbose:" command line argument.
struct LogVerbosity {
bool class_linker; // Enabled with "-verbose:class".
- bool verifier;
bool compiler;
- bool heap;
bool gc;
+ bool heap;
bool jdwp;
bool jni;
bool monitor;
+ bool profiler;
+ bool signals;
bool startup;
bool third_party_jni; // Enabled with "-verbose:third-party-jni".
bool threads;
- bool signals;
+ bool verifier;
};
extern LogVerbosity gLogVerbosity;