Disable lock contention logging by default.

The verifier runs out of memory with lock contention logging on nakasi.

Bug: 10646091
Change-Id: I8ddffdb48d779a20107bae7013cbe92d13dc8bdb
diff --git a/runtime/base/mutex.h b/runtime/base/mutex.h
index cec06cf..ee37388 100644
--- a/runtime/base/mutex.h
+++ b/runtime/base/mutex.h
@@ -51,8 +51,8 @@
 
 // Record Log contention information, dumpable via SIGQUIT.
 #ifdef ART_USE_FUTEXES
-// To disable lock contention logging, flip this to false.
-const bool kLogLockContentions = true;
+// To enable lock contention logging, set this to true.
+const bool kLogLockContentions = false;
 #else
 // Keep this false as lock contention logging is supported only with
 // futex.