Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.util.Log;

public class Main {
    public static boolean debug = true;

    public final static void w(String tag, String msg) {
        if (debug) {
            Log.w(tag, msg);
        }
    }

    public final static void w(String tag, String msg, Throwable tr) {
        if (debug) {
            Log.w(tag, msg, tr);
        }
    }
}