Prints a string to standard error if the Prop#debug flag is set. @param string debug string @param ext text optional extensions
(final Object string, final Object... ext)
| 203 | * @param ext text optional extensions |
| 204 | */ |
| 205 | public static void debugln(final Object string, final Object... ext) { |
| 206 | if(Prop.debug) errln(string, ext); |
| 207 | } |
| 208 | |
| 209 | /** |
| 210 | * Returns a string and replaces all % characters by the specified extensions |
no test coverage detected