From 9706db52764c685e136c79e557e1612ec7504643 Mon Sep 17 00:00:00 2001 From: Chris Waldon Date: Sat, 20 Jun 2020 12:20:29 -0400 Subject: [PATCH] chore: remove unneeded logging --- android/NotificationHelper.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/android/NotificationHelper.java b/android/NotificationHelper.java index 214865f..4f625c8 100644 --- a/android/NotificationHelper.java +++ b/android/NotificationHelper.java @@ -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) {