Reputation: 157
Ive recently started on Android programming and I just want to print a simple text on console. Seems that Logcat is the fastest way to do that, however its not working on MAC. What is missing?
Log.d("MYTAG", "PRINT");
Upvotes: 1
Views: 2338
Reputation: 1217
Sometimes, especially on emulator devices, ADB can get stuck and stop working. Try going to Terminal
tab and typing adb kill-server
. Restart your app with control
+D
/R
and you should be good to go
Upvotes: 1