summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/citra/citra_emu/utils/Log.java
blob: 070d01eb1a62aa4e23df203107b0326d5d5281a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package org.citra.citra_emu.utils;

import org.citra.citra_emu.BuildConfig;

/**
 * Contains methods that call through to {@link android.util.Log}, but
 * with the same TAG automatically provided. Also no-ops VERBOSE and DEBUG log
 * levels in release builds.
 */
public final class Log {
    private static final String TAG = "Citra Frontend";

    private Log() {
    }

    public static void verbose(String message) {
        if (BuildConfig.DEBUG) {
            android.util.Log.v(TAG, message);
        }
    }

    public static void debug(String message) {
        if (BuildConfig.DEBUG) {
            android.util.Log.d(TAG, message);
        }
    }

    public static void info(String message) {
        android.util.Log.i(TAG, message);
    }

    public static void warning(String message) {
        android.util.Log.w(TAG, message);
    }

    public static void error(String message) {
        android.util.Log.e(TAG, message);
    }
}