Update GRPCChannelManager.java

Fix wrong log class name.
This commit is contained in:
吴晟 Wu Sheng 2017-09-14 10:53:32 +08:00 committed by GitHub
parent f27effee70
commit d825c0cec0
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ import static org.skywalking.apm.agent.core.conf.Config.Collector.GRPC_CHANNEL_C
* @author wusheng
*/
public class GRPCChannelManager implements BootService, Runnable {
private static final ILog logger = LogManager.getLogger(DiscoveryRestServiceClient.class);
private static final ILog logger = LogManager.getLogger(GRPCChannelManager.class);
private volatile ManagedChannel managedChannel = null;
private volatile ScheduledFuture<?> connectCheckFuture;