Skip to content
Snippets Groups Projects
Commit 03b423f3 authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Suppress debug log from makedict in LatinIME

bug: 6447900
Change-Id: I436b2b7b261b422a7edca9cb99a4689b63877fe0
parent a9957141
No related branches found
No related tags found
No related merge requests found
......@@ -20,9 +20,12 @@ package com.android.inputmethod.latin.makedict;
* Wrapper to redirect log events to the right output medium.
*/
public class MakedictLog {
private static final boolean DEBUG = false;
private static void print(String message) {
System.out.println(message);
if (DEBUG) {
System.out.println(message);
}
}
public static void d(String message) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment