Correct logging message to blockchain-agnostic text

This commit is contained in:
catbref 2020-12-29 12:16:40 +00:00
parent d43a074cc1
commit 30d2e4fdac

View File

@ -242,7 +242,7 @@ public class TradeBot implements Listener {
} catch (DataException e) { } catch (DataException e) {
LOGGER.error("Couldn't run trade bot due to repository issue", e); LOGGER.error("Couldn't run trade bot due to repository issue", e);
} catch (ForeignBlockchainException e) { } catch (ForeignBlockchainException e) {
LOGGER.warn(() -> String.format("Bitcoin issue processing trade-bot entry for AT %s: %s", tradeBotData.getAtAddress(), e.getMessage())); LOGGER.warn(() -> String.format("Foreign blockchain issue processing trade-bot entry for AT %s: %s", tradeBotData.getAtAddress(), e.getMessage()));
} }
} }
} }