handleMSG_DEBUG method

void handleMSG_DEBUG(
  1. MSG_DEBUG msg
)

All implementations MUST understand MSG_DEBUG, but they are allowed to ignore it.

Implementation

void handleMSG_DEBUG(MSG_DEBUG msg) {
  if (tracePrint != null) {
    tracePrint('$hostport: MSG_DEBUG ${msg.message}');
  }
}