LibGDX logging not showing up in logcat

半世苍凉 提交于 2019-12-01 15:17:13

The default Log level is LOG_INFO. For the Gdx.app.debug call to work, you must first call Gdx.app.setLogLevel(Application.LOG_DEBUG); once (probably the first line in your Game's constructor so you can easily change it).

Use Gdx.app.log or even System.out.println (write sout (syso in eclipse) and enter );

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!