use fine log level

This commit is contained in:
Naoyuki Kanezawa
2014-07-27 14:13:24 +09:00
parent 9edb6f59d4
commit 4ca88dd5cd

View File

@@ -64,12 +64,12 @@ public class IO {
Manager io;
if (opts.forceNew || !opts.multiplex) {
logger.info(String.format("ignoring socket cache for %s", source));
logger.fine(String.format("ignoring socket cache for %s", source));
io = new Manager(source, opts);
} else {
String id = Url.extractId(parsed);
if (!managers.containsKey(id)) {
logger.info(String.format("new io instance for %s", source));
logger.fine(String.format("new io instance for %s", source));
managers.putIfAbsent(id, new Manager(source, opts));
}
io = managers.get(id);