use fine log level
This commit is contained in:
@@ -64,12 +64,12 @@ public class IO {
|
|||||||
Manager io;
|
Manager io;
|
||||||
|
|
||||||
if (opts.forceNew || !opts.multiplex) {
|
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);
|
io = new Manager(source, opts);
|
||||||
} else {
|
} else {
|
||||||
String id = Url.extractId(parsed);
|
String id = Url.extractId(parsed);
|
||||||
if (!managers.containsKey(id)) {
|
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));
|
managers.putIfAbsent(id, new Manager(source, opts));
|
||||||
}
|
}
|
||||||
io = managers.get(id);
|
io = managers.get(id);
|
||||||
|
|||||||
Reference in New Issue
Block a user