Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -20,10 +20,13 @@ 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) {
        if (DEBUG) {
            System.out.println(message);
        }
    }

    public static void d(String message) {
        print(message);