Logs a warning message. @param msg the message
(String msg)
| 429 | * @param msg the message |
| 430 | */ |
| 431 | public static void warning(String msg) { |
| 432 | if (useMessageFrame()) { |
| 433 | org.opensourcephysics.controls.MessageFrame.warning(msg); |
| 434 | } else { |
| 435 | log(Level.WARNING, msg); |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | /** |
| 440 | * Logs an information message. |
no test coverage detected