Prints the exception stack trace if the Prop#debug flag is set. @param throwable exception
(final Throwable throwable)
| 194 | * @param throwable exception |
| 195 | */ |
| 196 | public static void debug(final Throwable throwable) { |
| 197 | if(Prop.debug && throwable != null) stack(throwable); |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Prints a string to standard error if the {@link Prop#debug} flag is set. |