Application 接口提供了简单的日志记录,并且提供了颗粒度的控制。
1 Gdx.app.log("MyTag", "my informative message"); 2 Gdx.app.error("MyTag", "my error message", exception); 3 Gdx.app.debug("MyTag", "my debug message");
- Log等级可以是以下情况:
- Application.LOG_NONE: mutes all logging.
- Application.LOG_DEBUG: logs all messages.
- Application.LOG_ERROR: logs only error messages.
- Application.LOG_INFO: logs error and normal messages.
原文由博主 乐智 编辑撰写,版权归博主所有。
原文地址 http://www.dtblog.cn/1130.html 转载请注明出处!
时间: 2024-12-25 03:49:22