LogUploadServerInfo
日志服务器的配置信息。
Java
public static class LogUploadServerInfo {
public String serverDomain = null;
public String serverPath = null;
public int serverPort = 0;
public boolean serverHttps = true;
public LogUploadServerInfo() {
serverDomain = null;
serverPath = null;
serverPort = 0;
serverHttps = true;
}
public LogUploadServerInfo(String domain, String path, int port, boolean https){
serverDomain = domain;
serverPath = path;
serverPort = port;
serverHttps = https;
}
};
自从
v4.1.0
serverDomain
日志服务器的域名。
serverPath
日志在服务器上的存储路径。
serverPort
日志服务器的端口。
serverHttps
日志服务器是否使用 HTTPS 协议:
true
: 使用 HTTPS 协议。false
: 使用 HTTP 协议。