Skip to content

Commit

Permalink
Library changed
Browse files Browse the repository at this point in the history
  • Loading branch information
bgdlnchk committed Mar 1, 2021
1 parent a14cc25 commit c11bab0
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
import android.util.Log;

public class LogDebug {
private static void d(String message) {
Log.d("Library",message);

private static String TAG = "SUPER_AWESOME_APP";

public static void d(String message) {
Log.d(TAG, message);
}

}

0 comments on commit c11bab0

Please sign in to comment.