fix some log issue about logging
This commit is contained in:
parent
55dc88f185
commit
5ae773e903
|
|
@ -9,7 +9,7 @@
|
|||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>skywalking-logging-log4j-impl</artifactId>
|
||||
<artifactId>skywalking-logging-impl-log4j2</artifactId>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
|
|
|||
|
|
@ -25,6 +25,11 @@
|
|||
<artifactId>skywalking-registry</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.a.eye</groupId>
|
||||
<artifactId>skywalking-logging-impl-log4j2</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hsqldb</groupId>
|
||||
<artifactId>hsqldb</artifactId>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
package com.a.eye.skywalking.storage.data.index;
|
||||
|
||||
import com.a.eye.skywalking.logging.api.ILog;
|
||||
import com.a.eye.skywalking.logging.api.LogManager;
|
||||
import com.a.eye.skywalking.storage.config.Config;
|
||||
import com.a.eye.skywalking.storage.data.exception.ConnectorInitializeFailedException;
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
|
||||
import java.sql.*;
|
||||
|
||||
|
|
@ -16,7 +16,7 @@ public class IndexDBConnector {
|
|||
|
||||
private static final int MAX_BATCH_SIZE = 20;
|
||||
|
||||
private static Logger logger = LogManager.getLogger(IndexDBConnector.class);
|
||||
private static ILog logger = LogManager.getLogger(IndexDBConnector.class);
|
||||
|
||||
static {
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in New Issue