Logs a fine debugging message. @param msg the message
(String msg)
| 468 | * @param msg the message |
| 469 | */ |
| 470 | public static void fine(String msg) { |
| 471 | if (useMessageFrame()) { |
| 472 | org.opensourcephysics.controls.MessageFrame.fine(msg); |
| 473 | } else { |
| 474 | log(Level.FINE, msg); |
| 475 | } |
| 476 | } |
| 477 | |
| 478 | /** |
| 479 | * Clears the Log. |
no test coverage detected