Skip to content

Commit

Permalink
Remove unnecessary log (#23)
Browse files Browse the repository at this point in the history
* Remove unnecessary log.

* Update sdk version
  • Loading branch information
novalisdenahi authored Jan 17, 2023
1 parent dba3512 commit 8229b8b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=8.0.0
version=8.0.1
1 change: 0 additions & 1 deletion src/main/java/com/configcat/ConfigFetcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ public void onFailure(@NotNull Call call, @NotNull IOException e) {
@Override
public void onResponse(@NotNull Call call, @NotNull Response response) {
try (ResponseBody body = response.body()) {
logger.error("onReposnse");
if (response.isSuccessful() && body != null) {
String content = body.string();
String eTag = response.header("ETag");
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/configcat/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ private Constants() { /* prevent from instantiation*/ }
static final long DISTANT_FUTURE = Long.MAX_VALUE;
static final long DISTANT_PAST = 0;
static final String CONFIG_JSON_NAME = "config_v5";
static final String VERSION = "8.0.0";
static final String VERSION = "8.0.1";
}

0 comments on commit 8229b8b

Please sign in to comment.