Logs Output - fan-ADN/nendSDK-cocos2d-x GitHub Wiki

You can control log output on nend by using the NendLogger class.

Log level

By setting the log level, you can control the type of output log.
Log level settings are below:

Level Details Note
DEBUG Output Debug info to Log
INFO Output info to Log Output about succeed process, result, etc.
WARN Output warning to Log No images or invalid parameter, etc.
ERROR Output error to log Output about failed process, result, etc.
OFF You cannot output to log Default
#include "NendLogger.h"

...

NendLogger::setLogLevel(NendLoggerLogLevel::WARN);