Skip to content

Commit 2b6c19b

Browse files
committed
Fixed log
1 parent c45c152 commit 2b6c19b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/main/java/com/exceptionless/exceptionlessclient/settings/SettingsManager.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void updateSettings() {
7171

7272
try {
7373
long currentVersion = getVersion();
74-
LOG.info(String.format("Checking for updated settings from v%s", currentVersion));
74+
LOG.debug(String.format("Checking for updated settings from v%s", currentVersion));
7575

7676
SettingsResponse response = settingsClient.getSettings(currentVersion);
7777
if (shouldNotUpdate(response)) {
@@ -93,7 +93,7 @@ public void updateSettings() {
9393

9494
private boolean shouldNotUpdate(SettingsResponse response) {
9595
if (response.isNotModified()) {
96-
LOG.info("No need to update, settings are not modified");
96+
LOG.debug("No need to update, settings are not modified");
9797
return true;
9898
}
9999
if (!response.isSuccess()) {

0 commit comments

Comments
 (0)