Rendering message field as string in SMPacket.toString()
Status: Beta
Brought to you by:
orank
Could the toString method of SMPacket render the message field as a string?
Currently line 232 of ie.omk.smpp.message.SMPacket reads:
.append(",message=").append(message);
Could this be changed to:
.append(",message=").append(new String(message));