|
|
@@ -60,7 +60,8 @@ public class LogTrackingClient implements logTrackingApi {
|
|
|
public void publish() {
|
|
|
threadPoolExecutor.execute(() -> {
|
|
|
try {
|
|
|
- PostHelper.post(Config.SERVER + "/api/publish", logConfigDto);
|
|
|
+ String result = PostHelper.post("http://" + Config.SERVER + "/api/publish", logConfigDto);
|
|
|
+ System.out.println(result);
|
|
|
} catch (IOException e) {
|
|
|
log.error(e.getMessage());
|
|
|
}
|