Skip to content

Commit

Permalink
Tidied bot status message
Browse files Browse the repository at this point in the history
  • Loading branch information
glottologist committed May 18, 2023
1 parent ddd047f commit f6798ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batcher-bot/liquidity/src/bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const always_on_provision = (
const status = Object.keys(val.status)[0];
const raw_pair = val.pair;
const pair: string = getPairName(raw_pair.name_0, raw_pair.name_1);
console.info("Batch change",`${batch_number} ${pair} was ${val.status}`);
console.info("Batch change",`${batch_number} ${pair} was ${JSON.stringify(val.status)}`);
if (status == "open") {
if (settings.token_pairs.has(pair)) {
const setting = settings.token_pairs.get(pair);
Expand Down

0 comments on commit f6798ff

Please sign in to comment.