We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 464042b commit 2150ee6Copy full SHA for 2150ee6
1 file changed
spigot/src/main/java/me/wolfyscript/customcrafting/handlers/LocalStorageLoader.java
@@ -152,9 +152,10 @@ public void load() {
152
*/
153
api.getConsole().info("- - - - [Local Storage] - - - -");
154
int processors = Math.min(Runtime.getRuntime().availableProcessors(), dataSettings.maxProcessors());
155
- customCrafting.getLogger().info(PREFIX + "Using " + processors + " threads");
156
if (dataSettings.sync()) {
157
customCrafting.getLogger().info(PREFIX + "Loading data synchronously");
+ } else {
158
+ customCrafting.getLogger().info(PREFIX + "Using " + processors + " threads");
159
}
160
executor = Executors.newWorkStealingPool(processors);
161
api.getConsole().info(PREFIX + "Looking through data folder...");
0 commit comments