Some changes to logging.

This commit is contained in:
LevelX2 2013-03-04 00:01:12 +01:00
parent 2daae9fb47
commit cc96a55523
7 changed files with 9 additions and 9 deletions

View file

@ -411,7 +411,7 @@ public class ConnectDialog extends MageDialog {
List<String> servers = new ArrayList<String>();
String inputLine;
while ((inputLine = in.readLine()) != null) {
System.out.println("Found server: " + inputLine);
logger.info("Found server: " + inputLine);
servers.add(inputLine);
}