Logs an information message. @param msg the message
(String msg)
| 442 | * @param msg the message |
| 443 | */ |
| 444 | public static void info(String msg) { |
| 445 | if (useMessageFrame()) { |
| 446 | org.opensourcephysics.controls.MessageFrame.info(msg); |
| 447 | } else { |
| 448 | log(Level.INFO, msg); |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | /** |
| 453 | * Logs a configuration message. |
no test coverage detected