Skip to content

Commit

Permalink
Add bridj.quiet property so it will be less verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
sarxos committed Jan 11, 2013
1 parent 4f688fc commit 0190efb
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -27,6 +27,12 @@

public class WebcamDefaultDevice implements WebcamDevice {

static {
if (!"true".equals(System.getProperty("webcam.debug"))) {
System.setProperty("bridj.quiet", "true");
}
}

public static final Dimension SIZE_QQVGA = new Dimension(176, 144);
public static final Dimension SIZE_QVGA = new Dimension(320, 240);
public static final Dimension SIZE_CIF = new Dimension(352, 288);
Expand Down

1 comment on commit 0190efb

@sarxos
Copy link
Owner Author

@sarxos sarxos commented on 0190efb Jan 11, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.