What is the meaning of Log.i()
You’ll be needing something called “logcat” a lot whenever you’re developing for Android. Whenever you open Android Studio, you’ll see something like this: These are different levels of “problem”/information that you’re logging, so that you can understand which code is being run, and if it is working as expected. Now, you said why does Log.i(“key”,”value”) exist, and … Read more