Remove some verbose log statements, and a sleep.

This commit is contained in:
ghubstan 2022-06-29 19:26:08 -03:00
parent 9cb798f427
commit a355138b47
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -24,7 +24,6 @@ import protobuf.PaymentAccount;
import java.util.Properties;
import static bisq.bots.BotUtils.*;
import static bisq.proto.grpc.GetTradesRequest.Category.CLOSED;
import static io.grpc.Status.Code.PERMISSION_DENIED;
/**
@ -113,11 +112,7 @@ public class RegtestTradePaymentSimulator extends AbstractBot {
log.warn(copyPasteCliCommands);
log.warn("##############################################################################");
sleep(pollingInterval);
log.info("Trade is completed. Here are today's completed trades:");
printTradesSummaryForToday(CLOSED);
log.info("Closing {}'s gRPC channel.", this.getClass().getSimpleName());
log.debug("Closing {}'s gRPC channel.", this.getClass().getSimpleName());
super.grpcStubs.close();
}