mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +01:00
Merge pull request #4738 from chimp1984/improve-logs
Change log level at registerProposalAsBallot. Don't log full filter a…
This commit is contained in:
commit
b49a3eb15b
2 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@ public class BallotListService implements PersistedDataHost, DaoSetupService {
|
|||
private void registerProposalAsBallot(Proposal proposal) {
|
||||
Ballot ballot = new Ballot(proposal); // vote is null
|
||||
if (log.isInfoEnabled()) {
|
||||
log.info("We create a new ballot with a proposal and add it to our list. " +
|
||||
log.debug("We create a new ballot with a proposal and add it to our list. " +
|
||||
"Vote is null at that moment. proposalTxId={}", proposal.getTxId());
|
||||
}
|
||||
if (ballotList.contains(ballot)) {
|
||||
|
|
|
@ -466,7 +466,7 @@ public class FilterManager {
|
|||
Filter currentFilter = getFilter();
|
||||
|
||||
if (!isFilterPublicKeyInList(newFilter)) {
|
||||
log.warn("isFilterPublicKeyInList failed. Filter={}", newFilter);
|
||||
log.warn("isFilterPublicKeyInList failed. Filter.getSignerPubKeyAsHex={}", newFilter.getSignerPubKeyAsHex());
|
||||
return;
|
||||
}
|
||||
if (!isSignatureValid(newFilter)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue