Fix wrong logger names (#3075)
* Fix wrong logger name * Fix more wrong logger names in agent side
This commit is contained in:
parent
37efd1f95a
commit
4db1773d3e
|
|
@ -41,7 +41,7 @@ import java.util.Set;
|
|||
|
||||
public class CustomizeInstrumentationLoader implements InstrumentationLoader {
|
||||
|
||||
private static final ILog logger = LogManager.getLogger(CustomizeConfiguration.class);
|
||||
private static final ILog logger = LogManager.getLogger(CustomizeInstrumentationLoader.class);
|
||||
|
||||
@Override
|
||||
public List<AbstractClassEnhancePluginDefine> load(AgentClassLoader classLoader) {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ import org.slf4j.LoggerFactory;
|
|||
* @author kezhenxu94
|
||||
*/
|
||||
public class NacosConfigurationTestProvider extends ModuleProvider {
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(NacosConfigurationProvider.class);
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(NacosConfigurationTestProvider.class);
|
||||
|
||||
ConfigChangeWatcher watcher;
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ import static java.util.Objects.nonNull;
|
|||
* @author wusheng
|
||||
*/
|
||||
public abstract class JettyJsonHandler extends JettyHandler {
|
||||
private static final Logger logger = LoggerFactory.getLogger(JettyHandler.class);
|
||||
private static final Logger logger = LoggerFactory.getLogger(JettyJsonHandler.class);
|
||||
|
||||
@Override
|
||||
protected final void doGet(HttpServletRequest req, HttpServletResponse resp) {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ import org.slf4j.*;
|
|||
import zipkin2.codec.SpanBytesDecoder;
|
||||
|
||||
public class SpanV1JettyHandler extends JettyHandler {
|
||||
private static final Logger logger = LoggerFactory.getLogger(SpanV2JettyHandler.class);
|
||||
private static final Logger logger = LoggerFactory.getLogger(SpanV1JettyHandler.class);
|
||||
|
||||
private ZipkinReceiverConfig config;
|
||||
private SourceReceiver sourceReceiver;
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ import org.slf4j.*;
|
|||
*/
|
||||
public class MySQLStorageProvider extends ModuleProvider {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(H2StorageProvider.class);
|
||||
private static final Logger logger = LoggerFactory.getLogger(MySQLStorageProvider.class);
|
||||
|
||||
private H2StorageConfig config;
|
||||
private JDBCHikariCPClient mysqlClient;
|
||||
|
|
|
|||
Loading…
Reference in New Issue