org.jboss.netty.logging.InternalLogger Java Examples

The following examples show how to use org.jboss.netty.logging.InternalLogger. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: NettyHelper.java    From dubbo-2.6.5 with Apache License 2.0 4 votes vote down vote up
@Override
public InternalLogger newInstance(String name) {
    return new DubboLogger(LoggerFactory.getLogger(name));
}
 
Example #2
Source File: NettyInternalESLoggerFactory.java    From Elasticsearch with Apache License 2.0 4 votes vote down vote up
@Override
public InternalLogger newInstance(String name) {
    return new NettyInternalESLogger(Loggers.getLogger(name));
}
 
Example #3
Source File: NettyUtils.java    From Elasticsearch with Apache License 2.0 4 votes vote down vote up
@Override
public InternalLogger newInstance(String name) {
    return super.newInstance(name.replace("org.jboss.netty.", "netty.").replace("org.jboss.netty.", "netty."));
}
 
Example #4
Source File: NettyHelper.java    From dubbox with Apache License 2.0 4 votes vote down vote up
@Override
public InternalLogger newInstance(String name) {
    return new DubboLogger(LoggerFactory.getLogger(name));
}
 
Example #5
Source File: NettyHelper.java    From dubbox-hystrix with Apache License 2.0 4 votes vote down vote up
@Override
public InternalLogger newInstance(String name) {
    return new DubboLogger(LoggerFactory.getLogger(name));
}
 
Example #6
Source File: NettyHelper.java    From dubbo3 with Apache License 2.0 4 votes vote down vote up
@Override
public InternalLogger newInstance(String name) {
    return new DubboLogger(LoggerFactory.getLogger(name));
}
 
Example #7
Source File: NettyHelper.java    From dubbox with Apache License 2.0 4 votes vote down vote up
@Override
public InternalLogger newInstance(String name) {
    return new DubboLogger(LoggerFactory.getLogger(name));
}
 
Example #8
Source File: NettyHelper.java    From dubbox with Apache License 2.0 4 votes vote down vote up
@Override
public InternalLogger newInstance(String name) {
    return new DubboLogger(LoggerFactory.getLogger(name));
}