Please use this instead of the regular "System.out.println()" This will allow us to make use of your output. This forwards output to Logger.message(). @param string This is the string to print.
(String string)
| 185 | */ |
| 186 | |
| 187 | public static void println(String string) { |
| 188 | Logger.messageCustom("API", string); |
| 189 | } |
| 190 | |
| 191 | // |
| 192 | // Mods should never reference these.. (doing so would duplicate things... Basically, NEVER run more than once!) |
no test coverage detected