Print information message if PCGen is debugging. @param s String information message
(final String s)
| 155 | * @param s String information message |
| 156 | */ |
| 157 | public static void debugPrint(final String s) |
| 158 | { |
| 159 | Logger l = getLogger(); |
| 160 | if (l != null && l.isLoggable(DEBUG)) |
| 161 | { |
| 162 | l.log(DEBUG, s); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * Print information message if PCGen is debugging. |