Move CommandCenterLog to sentinel-transport-common and polish related code (#1341)
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
This commit is contained in:
parent
624d19d4ce
commit
e4769293dc
|
|
@ -15,7 +15,7 @@
|
|||
*/
|
||||
package com.alibaba.csp.sentinel.demo.log.logback;
|
||||
|
||||
import com.alibaba.csp.sentinel.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.transport.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.log.LogTarget;
|
||||
import com.alibaba.csp.sentinel.log.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
*/
|
||||
package com.alibaba.csp.sentinel.demo.log.logback;
|
||||
|
||||
import com.alibaba.csp.sentinel.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.transport.log.CommandCenterLog;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
|
|
|
|||
|
|
@ -13,8 +13,9 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.alibaba.csp.sentinel.log;
|
||||
package com.alibaba.csp.sentinel.transport.log;
|
||||
|
||||
import com.alibaba.csp.sentinel.log.LoggerSpiProvider;
|
||||
import com.alibaba.csp.sentinel.log.jul.JavaLoggingAdapter;
|
||||
|
||||
/**
|
||||
|
|
@ -49,9 +49,8 @@ public class NettyHttpCommandCenter implements CommandCenter {
|
|||
try {
|
||||
server.start();
|
||||
} catch (Exception ex) {
|
||||
RecordLog.info("Start netty server error", ex);
|
||||
RecordLog.warn("[NettyHttpCommandCenter] Failed to start Netty transport server", ex);
|
||||
ex.printStackTrace();
|
||||
System.exit(-1);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ import java.util.concurrent.ConcurrentHashMap;
|
|||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import com.alibaba.csp.sentinel.command.CommandHandler;
|
||||
import com.alibaba.csp.sentinel.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.transport.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.log.RecordLog;
|
||||
import com.alibaba.csp.sentinel.transport.config.TransportConfig;
|
||||
import com.alibaba.csp.sentinel.util.StringUtil;
|
||||
|
|
@ -78,7 +78,7 @@ public final class HttpServer {
|
|||
break;
|
||||
} catch (Exception e) {
|
||||
TimeUnit.MILLISECONDS.sleep(30);
|
||||
RecordLog.warn("[HttpServer] Netty server bind error, port={0}, retry={1}", newPort, retryCount);
|
||||
RecordLog.warn("[HttpServer] Netty server bind error, port={}, retry={}", newPort, retryCount);
|
||||
retryCount ++;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ import com.alibaba.csp.sentinel.command.CommandHandler;
|
|||
import com.alibaba.csp.sentinel.command.CommandRequest;
|
||||
import com.alibaba.csp.sentinel.command.CommandResponse;
|
||||
import com.alibaba.csp.sentinel.config.SentinelConfig;
|
||||
import com.alibaba.csp.sentinel.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.transport.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.transport.command.codec.CodecRegistry;
|
||||
import com.alibaba.csp.sentinel.transport.command.codec.Encoder;
|
||||
import com.alibaba.csp.sentinel.transport.util.HttpCommandUtils;
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ import java.util.concurrent.TimeUnit;
|
|||
import com.alibaba.csp.sentinel.command.CommandHandler;
|
||||
import com.alibaba.csp.sentinel.command.CommandHandlerProvider;
|
||||
import com.alibaba.csp.sentinel.concurrent.NamedThreadFactory;
|
||||
import com.alibaba.csp.sentinel.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.transport.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.transport.CommandCenter;
|
||||
import com.alibaba.csp.sentinel.transport.command.http.HttpEventTask;
|
||||
import com.alibaba.csp.sentinel.transport.config.TransportConfig;
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ import com.alibaba.csp.sentinel.command.CommandHandler;
|
|||
import com.alibaba.csp.sentinel.command.CommandRequest;
|
||||
import com.alibaba.csp.sentinel.command.CommandResponse;
|
||||
import com.alibaba.csp.sentinel.config.SentinelConfig;
|
||||
import com.alibaba.csp.sentinel.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.transport.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.transport.command.SimpleHttpCommandCenter;
|
||||
import com.alibaba.csp.sentinel.transport.command.exception.RequestException;
|
||||
import com.alibaba.csp.sentinel.transport.util.HttpCommandUtils;
|
||||
|
|
@ -126,7 +126,7 @@ public class HttpEventTask implements Runnable {
|
|||
printWriter.flush();
|
||||
}
|
||||
} catch (Exception e1) {
|
||||
CommandCenterLog.warn("[SimpleHttpCommandCenter] Close server socket failed", e);
|
||||
CommandCenterLog.warn("Failed to write error response", e1);
|
||||
}
|
||||
} finally {
|
||||
closeResource(inputStream);
|
||||
|
|
|
|||
|
|
@ -25,7 +25,6 @@ import java.nio.charset.Charset;
|
|||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
|
||||
import com.alibaba.csp.sentinel.log.CommandCenterLog;
|
||||
import com.alibaba.csp.sentinel.log.RecordLog;
|
||||
|
||||
/**
|
||||
|
|
@ -125,7 +124,7 @@ public class SimpleHttpClient {
|
|||
try {
|
||||
socket.close();
|
||||
} catch (Exception ex) {
|
||||
CommandCenterLog.info("Error when closing " + type + " request to " + socketAddress + ": ", ex);
|
||||
RecordLog.warn("Error when closing {} request to {} in SimpleHttpClient", type, socketAddress, ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -177,7 +176,7 @@ public class SimpleHttpClient {
|
|||
}
|
||||
return paramsBuilder.toString();
|
||||
} catch (Throwable e) {
|
||||
RecordLog.info("Encode request params fail", e);
|
||||
RecordLog.warn("Encode request params fail", e);
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue