Debug.println(msg); type = UNKNOWN; for (int i = 0; i < messages.length; i++) { if (msg.equals(messages[i])) { type = i + 1; break; } }
return type;