mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-21 06:11:46 -04:00
Change log level
This commit is contained in:
parent
f61bf11c68
commit
66f94091bb
1 changed files with 3 additions and 1 deletions
|
@ -33,7 +33,9 @@ class GetFeeRequest {
|
||||||
try {
|
try {
|
||||||
return provider.getFee(transactionId);
|
return provider.getFee(transactionId);
|
||||||
} catch (IOException | HttpException e) {
|
} catch (IOException | HttpException e) {
|
||||||
log.warn("Fee request failed for tx {} from provider {}\n error={}",
|
log.info("Fee request failed for tx {} from provider {}\n" +
|
||||||
|
"That is expected if the tx was not propagated yet to the provider.\n" +
|
||||||
|
"error={}",
|
||||||
transactionId, provider, e.getMessage());
|
transactionId, provider, e.getMessage());
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue