HADOOP-6422. Remove log line.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@890410 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug Cutting 2009-12-14 17:45:51 +00:00
parent 6c842ad4b5
commit 2ee80854a5
1 changed files with 0 additions and 1 deletions

View File

@ -88,7 +88,6 @@ private static synchronized RpcEngine getProtocolEngine(Class protocol,
if (engine == null) {
Class<?> impl = conf.getClass(ENGINE_PROP+"."+protocol.getName(),
WritableRpcEngine.class);
LOG.info("Using "+impl.getName()+" for "+protocol.getName());
engine = (RpcEngine)ReflectionUtils.newInstance(impl, conf);
if (protocol.isInterface())
PROXY_ENGINES.put(Proxy.getProxyClass(protocol.getClassLoader(),