Common code to conditionally log debug statements. @param msg the message to log.
(String msg)
| 336 | * @param msg the message to log. |
| 337 | */ |
| 338 | private void ifDebugOut(String msg) { |
| 339 | if (debug) |
| 340 | debugOut(msg); |
| 341 | } |
| 342 | |
| 343 | /** |
| 344 | * Common formatting for debug output. |