Skip to content

Commit

Permalink
Make initial logging also debug level
Browse files Browse the repository at this point in the history
Should be set to warn level again with next release v1.3.5
  • Loading branch information
ripcurlx committed Apr 30, 2020
1 parent 4d8d1e0 commit 0903b18
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,8 @@ private boolean addProtectedStorageEntry(ProtectedStorageEntry protectedStorageE

// To avoid that expired data get stored and broadcast we check early for expire date.
if (protectedStorageEntry.isExpired(clock)) {
log.warn("We received an expired protectedStorageEntry from peer {}",
//TODO: set to warn log level with next release v1.3.5
log.debug("We received an expired protectedStorageEntry from peer {}",
sender != null ? sender.getFullAddress() : "sender is null");
log.debug("Expired protectedStorageEntry from peer {}. getCreationTimeStamp={}, protectedStorageEntry={}",
sender != null ? sender.getFullAddress() : "sender is null",
Expand Down

0 comments on commit 0903b18

Please sign in to comment.