Merge "[GWP-ASan] Remove log line from init."

This commit is contained in:
Mitch Phillips 2020-02-19 01:24:49 +00:00 committed by Gerrit Code Review
commit 679d8e19cf

View file

@ -67,7 +67,9 @@ bool gwp_asan_initialize(const MallocDispatch* dispatch, bool*, const char*) {
Opts.InstallForkHandlers = true;
GuardedAlloc.init(Opts);
info_log("GWP-ASan has been enabled.");
// TODO(b/149790891): The log line below causes ART tests to fail as they're
// not expecting any output. Disable the output for now.
// info_log("GWP-ASan has been enabled.");
return true;
}