Skip to content

Commit

Permalink
Chore: Display Log.d for debugging logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangnguyen92dn committed Feb 19, 2021
1 parent 54d7c5b commit 257770d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void onReceive(Context context, Intent intent) {

private void logForDebugging(String message) {
if (BuildConfig.DEBUG) {
Log.i(TAG, message);
Log.d(TAG, message);
}
}
}

0 comments on commit 257770d

Please sign in to comment.