@@ -24,11 +24,11 @@ private Config() {
2424 public static Boolean ircFormatting = true ;
2525 public static Boolean mcFormatting = true ;
2626 public static String nick = "bridgebot" ;
27- public static String password = "true " ;
27+ public static String password = "" ;
2828 public static String hostname = "localhost" ;
2929 public static Integer port = 6667 ;
3030 public static String channel = "#general" ;
31- public static Boolean tls = true ;
31+ public static Boolean tls = false ;
3232 public static String username = "bridgebot" ;
3333
3434 public static String realname = "SimpleIRCBridge" ;
@@ -120,13 +120,13 @@ private static void correctionListener(ConfigSpec.CorrectionAction action, List<
120120 String key = String .join ("." , path );
121121 switch (action ) {
122122 case ADD :
123- SimpleIRCBridgeCommon .logger .warn ("Config key {} missing -> added default value." , key );
123+ SimpleIRCBridgeCommon .log () .warn ("Config key {} missing -> added default value." , key );
124124 break ;
125125 case REMOVE :
126- SimpleIRCBridgeCommon .logger .warn ("Config key {} not defined -> removed from config." , key );
126+ SimpleIRCBridgeCommon .log () .warn ("Config key {} not defined -> removed from config." , key );
127127 break ;
128128 case REPLACE :
129- SimpleIRCBridgeCommon .logger .warn ("Config key {} not valid -> replaced with default value." , key );
129+ SimpleIRCBridgeCommon .log () .warn ("Config key {} not valid -> replaced with default value." , key );
130130 }
131131 }
132132
0 commit comments