Added some glow up to cli.

This commit is contained in:
WickedJack99
2024-04-22 21:57:08 +02:00
parent 1b18713d06
commit 6fff16a8ba

View File

@@ -54,7 +54,9 @@ public class InputThread extends Thread implements Terminatable {
@Override
public void run() {
System.out.println("This peer is online and ready to take commands.\n");
System.out.println("-----------------------------------------------");
System.out.println("This peer is online and ready to take commands.");
System.out.println("-----------------------------------------------");
while (inputThreadRunning) {
try {
System.out.println("Enter command:");
@@ -218,7 +220,8 @@ public class InputThread extends Thread implements Terminatable {
}
} catch (Exception e) {
System.err.println(e);
}
}
System.out.println("-----------------------------------------------");
}
}