Creates an or changes the default factory
implementation. This factory allows you to choose what logging framework
DotNetty should use. The default factory is own with registered.
You can change it to your preferred logging framework before other DotNetty classes are loaded:
InternalLoggerFactory.DefaultFactory = new LoggerFactory();
Please note that the new default factory is effective only for the classes
which were loaded after the default factory is changed. Therefore, should be set as early
as possible and should not be called more than once.