chore: remove unneeded logging from go android package

This commit is contained in:
Chris Waldon 2020-06-20 12:21:20 -04:00
parent 62cd63ee08
commit a88ff57f73
No known key found for this signature in database
GPG Key ID: 35BBC7C073F5A5D3
1 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@ package android
import ( import (
"fmt" "fmt"
"log"
"sync" "sync"
"gioui.org/app" "gioui.org/app"
@ -113,7 +112,6 @@ func NewChannel(importance Importance, id, name, description string) (*Notificat
fieldID := jni.GetStaticFieldID(env, managerClass, name, "I") fieldID := jni.GetStaticFieldID(env, managerClass, name, "I")
importances[index] = jni.GetStaticIntField(env, managerClass, fieldID) 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") newChannelMethod := jni.GetStaticMethodID(env, notifyClass, "newChannel", "(Landroid/content/Context;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V")