File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/com/exceptionless/exceptionlessclient/settings Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ()) {
You can’t perform that action at this time.
0 commit comments