File tree 1 file changed +2
-2
lines changed
src/main/java/com/exceptionless/exceptionlessclient/settings
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public void updateSettings() {
71
71
72
72
try {
73
73
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 ));
75
75
76
76
SettingsResponse response = settingsClient .getSettings (currentVersion );
77
77
if (shouldNotUpdate (response )) {
@@ -93,7 +93,7 @@ public void updateSettings() {
93
93
94
94
private boolean shouldNotUpdate (SettingsResponse response ) {
95
95
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" );
97
97
return true ;
98
98
}
99
99
if (!response .isSuccess ()) {
You can’t perform that action at this time.
0 commit comments