diff options
author | Anwar Ghuloum <anwarg@google.com> | 2013-08-13 17:22:14 -0700 |
---|---|---|
committer | Anwar Ghuloum <anwarg@google.com> | 2013-08-13 19:13:59 -0700 |
commit | 75a43f10f55e2aa550de51e969cc1e60d583b632 (patch) | |
tree | 32667690ae49d1168d8310692af915e497a6a392 /runtime/base/logging.h | |
parent | 5e3572709b5a5d59957f835db4f73760ecef08da (diff) | |
download | art-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/base/logging.h')
-rw-r--r-- | runtime/base/logging.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/base/logging.h b/runtime/base/logging.h index ade8d34..8e40da0 100644 --- a/runtime/base/logging.h +++ b/runtime/base/logging.h @@ -125,6 +125,7 @@ #define VLOG_IS_ON(module) UNLIKELY(::art::gLogVerbosity.module) #define VLOG(module) if (VLOG_IS_ON(module)) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream() +#define VLOG_STREAM(module) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream() // // Implementation details beyond this point. @@ -306,6 +307,7 @@ 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; |