summaryrefslogtreecommitdiff
path: root/libc/malloc_debug/Config.cpp
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2019-04-01 19:31:26 -0700
committerChristopher Ferris <cferris@google.com>2019-04-02 10:55:21 -0700
commitc328e4465d12d760f5fbcb2daddf5fa4138f50b1 (patch)
treefd91c386332bbe1198cb0bedc11505b76d146057 /libc/malloc_debug/Config.cpp
parent4699cf61746d37fc11c8eb8bdfc7eb296a476e4b (diff)
Disable info messages by default for malloc debug.
Add a new option verbose for malloc debug that is not enabled by default. This disables all of the info log messages. It turns out these log messages can add a measurable amount of time and can change the boot up. Bug: 129239269 Test: Adjusted unit tests pass. Test: Verified no messages unless verbose option used. Change-Id: I805cb7c8ecb44de88119574e59d784877cacc383
Diffstat (limited to 'libc/malloc_debug/Config.cpp')
-rw-r--r--libc/malloc_debug/Config.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/malloc_debug/Config.cpp b/libc/malloc_debug/Config.cpp
index dd20b5cd5..dbd3eac4a 100644
--- a/libc/malloc_debug/Config.cpp
+++ b/libc/malloc_debug/Config.cpp
@@ -135,6 +135,9 @@ const std::unordered_map<std::string, Config::OptionInfo> Config::kOptions = {
{
"abort_on_error", {ABORT_ON_ERROR, &Config::VerifyValueEmpty},
},
+ {
+ "verbose", {VERBOSE, &Config::VerifyValueEmpty},
+ },
};
bool Config::ParseValue(const std::string& option, const std::string& value, size_t min_value,