Application接口提供了简单的管理日志的方法。
日志的消息可以是info、error和debug。格式如下:
Gdx.app.log("MyTag", "my informative message");
Gdx.app.error("MyTag", "my error message", exception); Gdx.app.debug("MyTag", "my debug message");
在Android中,日志将输出到logcat中。
可以通过以下方法设置日志的级别:
Gdx.app.setLogLevel(logLevel);
logLevel可以是以下值:
(www.libgdx.cn版权所有,如需转载,注明出处)
|