Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Commit

Permalink
Changes -> Logging change
Browse files Browse the repository at this point in the history
  • Loading branch information
EinfacheSache committed Aug 19, 2023
1 parent a71f673 commit ddcec70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected Response callRequest(Request request) {
try {
return client.newCall(request).execute();
} catch (UnknownHostException | SocketTimeoutException | SocketException connectionException) {
if(!request.url().toString().equals(core.getRestAPI().getStatsServer())) {
if(!request.url().toString().equals(core.getRestAPI().getPasteServer())) {
core.severe(request + " failed cause (" + connectionException + ")");
}else
core.debug(request + " failed cause (" + connectionException + ")");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ public JSONArray getNeoServerIPs() {
return neoServerIPs;
}

public String getStatsServer() {
return statsServer;
public String getPasteServer() {
return pasteServer;
}

public boolean isSetup() {
Expand Down

0 comments on commit ddcec70

Please sign in to comment.