Julio Didier Maciel
Julio Didier Maciel

Reputation: 157

Logcat not working on MAC

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");

enter image description here

Upvotes: 1

Views: 2338

Answers (1)

jujka
jujka

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

Related Questions