mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-11 16:10:32 -04:00
change log level
This commit is contained in:
parent
42bf13c90d
commit
578ec48d93
1 changed files with 6 additions and 3 deletions
|
@ -25,7 +25,10 @@ import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
import java.math.BigInteger;
|
import java.math.BigInteger;
|
||||||
import java.util.*;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
|
||||||
|
@ -98,7 +101,7 @@ class AddressBasedCoinSelector implements CoinSelector {
|
||||||
if (addressOutput.equals(addressEntry.getAddress())) {
|
if (addressOutput.equals(addressEntry.getAddress())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
log.warn("No match found at matchesRequiredAddress addressOutput/addressEntry " + addressOutput.toString
|
log.trace("No match found at matchesRequiredAddress addressOutput / addressEntry " + addressOutput.toString
|
||||||
() + " / " + addressEntry.getAddress().toString());
|
() + " / " + addressEntry.getAddress().toString());
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue