- remove tunnel log on java console as it is confusing

This commit is contained in:
Richard Alam 2012-04-16 18:37:45 +00:00
parent 01a7a4be94
commit af8620f292
3 changed files with 2 additions and 3 deletions

View File

@ -70,7 +70,6 @@ public class DeskShareApplet extends JApplet implements ClientListener {
@Override
public void start() {
System.out.println("Desktop Sharing Applet Starting");
System.out.println("v0.8-beta4 mar 22, 2012");
super.start();
client = new DeskshareClient.NewBuilder().host(hostValue).port(portValue)
.room(roomValue).captureWidth(cWidthValue)

View File

@ -158,12 +158,12 @@ public class ScreenSharerRunner {
System.out.println("-----------------------------------------------------------------------");
System.out.println(LICENSE_HEADER);
System.out.println("-----------------------------------------------------------------------\n\n");
System.out.println("Desktop Sharing v0.71");
System.out.println("Desktop Sharing v0.8");
System.out.println("Start");
System.out.println("Connecting to " + ssi.host + ":" + ssi.port + " room " + ssi.room);
System.out.println("Sharing " + ssi.captureWidth + "x" + ssi.captureHeight + " at " + ssi.x + "," + ssi.y);
System.out.println("Scale to " + ssi.scaleWidth + "x" + ssi.scaleHeight + " with quality = " + ssi.quality);
System.out.println("Http Tunnel: " + ssi.httpTunnel);
// System.out.println("Http Tunnel: " + ssi.httpTunnel);
}
private static final String LICENSE_HEADER = "This program is free software: you can redistribute it and/or modify\n" +