Set debug level

This commit is contained in:
Iwan Timmer
2014-02-17 16:41:48 +01:00
parent c22ded7b78
commit d714011fe7

View File

@@ -20,6 +20,8 @@ import java.net.SocketException;
import java.net.UnknownHostException; import java.net.UnknownHostException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.xmlpull.v1.XmlPullParserException; import org.xmlpull.v1.XmlPullParserException;
/** /**
@@ -166,6 +168,7 @@ public class Limelight implements NvConnectionListener {
boolean fake = false; boolean fake = false;
String mapping = null; String mapping = null;
String audio = "hw:0,0"; String audio = "hw:0,0";
Level debug = Level.SEVERE;
for (int i = 0; i < args.length - 1; i++) { for (int i = 0; i < args.length - 1; i++) {
if (args[i].equals("-input")) { if (args[i].equals("-input")) {
@@ -204,6 +207,10 @@ public class Limelight implements NvConnectionListener {
refresh = 60; refresh = 60;
} else if (args[i].equals("-fake")) { } else if (args[i].equals("-fake")) {
fake = true; fake = true;
} else if (args[i].equals("-v")) {
debug = Level.WARNING;
} else if (args[i].equals("-vv")) {
debug = Level.ALL;
} else { } else {
System.out.println("Syntax Error: Unrecognized argument: " + args[i]); System.out.println("Syntax Error: Unrecognized argument: " + args[i]);
parse = false; parse = false;
@@ -227,6 +234,9 @@ public class Limelight implements NvConnectionListener {
} else } else
host = args[args.length-1]; host = args[args.length-1];
//Set debugging level
Logger.getLogger(LimeLog.class.getName()).setLevel(debug);
StreamConfiguration streamConfig = new StreamConfiguration((resolution/9)*16, resolution, refresh); StreamConfiguration streamConfig = new StreamConfiguration((resolution/9)*16, resolution, refresh);
Limelight limelight = new Limelight(host); Limelight limelight = new Limelight(host);