(String log)
| 144 | |
| 145 | // Print a message when debug is on |
| 146 | public static void debug(String log) { |
| 147 | if (debug) { |
| 148 | updateDebugInfo(); |
| 149 | System.out.println("[DEBUG " + debugInfo + "] " + log); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | public static ShardManager getShardManager() { |
| 154 | return shardManager; |
no test coverage detected