Report an internal message of level "WARN". Message text is prefixed with the string "SLF4J(W)", with (W) standing as a shorthand for WARN. Messages of level WARN are be enabled when the #SLF4J_INTERNAL_VERBOSITY_KEY system property is set to "DEBUG", "INFO" or "WARN" and disabled when
(String msg)
| 167 | * @param msg the message text |
| 168 | */ |
| 169 | static final public void warn(String msg) { |
| 170 | if(isEnabledFor(Level.WARN)) { |
| 171 | getTarget().println(SLF4J_WARN_PREFIX + msg); |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | /** |
| 176 | * Report an internal message of level "ERROR accompanied by a {@link Throwable}. |
no test coverage detected