0

I´m working on a small libGDX project by using AndroidStudio. I´m a beginner :D. However I want to print something on the logcat-console on this way:

Gdx.app.log("#INFO", "My message.");

But excecuting this my logcat console doesn´t show anything. I don´t know how to do it the right way. No error is occurrs.

Hope you can help :D ~ Henri

MeineHTMLCodes
  • 509
  • 5
  • 19
  • Make sure any filtering is turned d'offrir on your logcat console and that you didn't search for anything in the console – Lucas B Nov 05 '17 at 15:01

1 Answers1

0

Try addind this line first Gdx.app.setLogLevel(Application.LOG_DEBUG); Like stated here LibGDX logging not showing up in logcat

Leonardo Drici
  • 749
  • 3
  • 11
  • 32