Common formatting for debug output. @param msg the message to log.
(String msg)
| 345 | * @param msg the message to log. |
| 346 | */ |
| 347 | private void debugOut(String msg) { |
| 348 | if (prefix != null) |
| 349 | out.println(prefix + ": " + msg); |
| 350 | else |
| 351 | out.println(msg); |
| 352 | } |
| 353 | |
| 354 | /** |
| 355 | * Return the package name of the class. |
no test coverage detected