chore: remove unneeded logging

This commit is contained in:
Chris Waldon 2020-06-20 12:20:29 -04:00
parent fe7a92c444
commit 9706db5276
No known key found for this signature in database
GPG Key ID: 35BBC7C073F5A5D3
1 changed files with 0 additions and 3 deletions

View File

@ -11,13 +11,10 @@ import android.graphics.drawable.Icon;
public class NotificationHelper {
private final static String tag = "NotificationHelper";
public static void newChannel(Context ctx, int importance, String channelID, String name, String description) {
Log.w(tag,String.format("newChannel invoked"));
NotificationChannel channel = new NotificationChannel(channelID, name, importance);
Log.e(tag,String.format("channel: %s",channel));
channel.setDescription(description);
NotificationManager notificationManager = ctx.getSystemService(NotificationManager.class);
Log.e(tag,String.format("manager: %s",notificationManager));
notificationManager.createNotificationChannel(channel);
}
public static void sendNotification(Context ctx, String channelID, int notificationID, String title, String text) {