Logging in J2ME

后端 未结 8 2206
不知归路
不知归路 2020-12-08 16:25

What logging solutions exist for j2me?

I\'m specifically interested in easily excluding logging for \"release\" version, to have a smaller package & memory foot

8条回答
  •  借酒劲吻你
    2020-12-08 17:10

    LWUIT framework of the J2ME provide the Logging form which can have a log the statement inside it. You can add the log at each and every place you think may generate the exception.

    Example : Log.getInstance().showLog(); By adding the above line you can able to track the logging in the J2ME devices.

提交回复
热议问题