Skip to content

Commit

Permalink
Reduce log level of invalid sync contact address
Browse files Browse the repository at this point in the history
Fixes #1663
  • Loading branch information
AsamK committed Jan 14, 2025
1 parent 9426974 commit 5ac5938
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ public void handleSyncDeviceContacts(final InputStream input) throws IOException
c = s.read();
} catch (IOException e) {
if (e.getMessage() != null && e.getMessage().contains("Missing contact address!")) {
logger.warn("Sync contacts contained invalid contact, ignoring: {}", e.getMessage());
logger.debug("Sync contacts contained invalid contact, ignoring: {}", e.getMessage());
continue;
} else {
throw e;
Expand Down

0 comments on commit 5ac5938

Please sign in to comment.