Better error message

This commit is contained in:
Trustin Lee 2012-08-28 16:26:57 +09:00
parent c565b59fe3
commit 17ecbdd804

View File

@ -45,7 +45,7 @@ public class AioEventLoopGroup extends MultithreadEventLoopGroup {
} }
} catch (Throwable t) { } catch (Throwable t) {
LOGGER.debug(String.format( LOGGER.debug(String.format(
"Unable to instance the optimal %s implementation - falling back to %s.", "Failed to instantiate the optimal %s implementation - falling back to %s.",
AioChannelFinder.class.getSimpleName(), DefaultAioChannelFinder.class.getSimpleName()), t); AioChannelFinder.class.getSimpleName(), DefaultAioChannelFinder.class.getSimpleName()), t);
finder = new DefaultAioChannelFinder(); finder = new DefaultAioChannelFinder();
} }