Skip to content

Commit

Permalink
chore: remove forgotten logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ablax committed Aug 28, 2024
1 parent e831a69 commit 4062ea1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/com/limechain/client/LightClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,11 @@ public LightClient() {
@SneakyThrows
public void start() {
this.network.start();
System.out.println("Network started");
while (true) {
this.network.updateCurrentSelectedPeer();
if (this.network.getKademliaService().getSuccessfulBootNodes() > 0) {
log.log(Level.INFO, "Node successfully connected to a peer! Sync can start!");
this.warpSyncMachine = AppBean.getBean(WarpSyncMachine.class);
System.out.println("Starting warp sync machine...");
this.warpSyncMachine.start();
break;
}
Expand Down

0 comments on commit 4062ea1

Please sign in to comment.