ForwardingService: reduce redundant console output at startup

This commit is contained in:
Andreas Schildbach 2022-07-28 15:00:20 +02:00
parent 62fecfa37c
commit 509694d9ad

View file

@ -86,9 +86,8 @@ public class ForwardingService implements AutoCloseable {
forwardingService.start();
// After we start listening, we can tell the user the receiving address
System.out.printf("Waiting to receive coins on %s\n", forwardingService.receivingAddress());
System.out.printf("Will send coins to %s\n", address);
System.out.println("Waiting for coins to arrive. Press Ctrl-C to quit.");
System.out.printf("Waiting to receive coins on: %s\n", forwardingService.receivingAddress());
System.out.println("Press Ctrl-C to quit.");
try {
Thread.sleep(Long.MAX_VALUE);