Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
*/
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;
Expand Down