load web socket ack timeouts from config

master
Alex 2022-02-28 18:54:23 +01:00
parent a7662eaaa6
commit 4d5baafb74
1 changed files with 0 additions and 4 deletions

View File

@ -4,7 +4,6 @@ import java.io.File;
import java.io.IOException;
import java.util.List;
import lombok.Getter;
import net.krakatoa.proxy.ProxySystem;
import net.md_5.bungee.config.Configuration;
import net.md_5.bungee.config.ConfigurationProvider;
import net.md_5.bungee.config.YamlConfiguration;
@ -43,8 +42,5 @@ public class ConfigHandler {
mongodbDatabase = configuration.getString("mongodb.database");
mongodbUsername = configuration.getString("mongodb.username");
mongodbPassword = configuration.getString("mongodb.password");
ProxySystem.getInstance().getLogger().info(
"webSocketAckTimeouts " + webSocketAckTimeouts.get(0) + " " + webSocketAckTimeouts.get(1));
}
}