From a88ff57f7338aa6e1c21aa1131b9efd6171b9b37 Mon Sep 17 00:00:00 2001 From: Chris Waldon Date: Sat, 20 Jun 2020 12:21:20 -0400 Subject: [PATCH] chore: remove unneeded logging from go android package --- android/notify_android.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/android/notify_android.go b/android/notify_android.go index 87233d1..ad401f5 100644 --- a/android/notify_android.go +++ b/android/notify_android.go @@ -2,7 +2,6 @@ package android import ( "fmt" - "log" "sync" "gioui.org/app" @@ -113,7 +112,6 @@ func NewChannel(importance Importance, id, name, description string) (*Notificat fieldID := jni.GetStaticFieldID(env, managerClass, name, "I") importances[index] = jni.GetStaticIntField(env, managerClass, fieldID) } - log.Printf("importances: %v", importances) }) newChannelMethod := jni.GetStaticMethodID(env, notifyClass, "newChannel", "(Landroid/content/Context;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V")