am 03b423f3: Suppress debug log from makedict in LatinIME

* commit '03b423f313cccb85890346ec4e6e347335f89fbf':
  Suppress debug log from makedict in LatinIME
This commit is contained in:
Ken Wakasa 2012-05-04 18:14:36 -07:00 committed by Android Git Automerger
commit e9001d28c4

View File

@ -20,9 +20,12 @@ package com.android.inputmethod.latin.makedict;
* Wrapper to redirect log events to the right output medium. * Wrapper to redirect log events to the right output medium.
*/ */
public class MakedictLog { public class MakedictLog {
private static final boolean DEBUG = false;
private static void print(String message) { private static void print(String message) {
System.out.println(message); if (DEBUG) {
System.out.println(message);
}
} }
public static void d(String message) { public static void d(String message) {