Turning off logging in ALSA device connection routines.

bug: 21298614
Change-Id: Ia88393698072af8f7c101382f180192646bf713e
This commit is contained in:
Paul McLean
2015-05-19 10:32:13 -07:00
parent 19877fa5f6
commit afe55a5ce9
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ import java.util.ArrayList;
*/
public class AlsaCardsParser {
private static final String TAG = "AlsaCardsParser";
protected static final boolean DEBUG = true;
protected static final boolean DEBUG = false;
private static final String kCardsFilePath = "/proc/asound/cards";

View File

@@ -50,7 +50,7 @@ import java.util.ArrayList;
*/
public final class UsbAlsaManager {
private static final String TAG = UsbAlsaManager.class.getSimpleName();
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
private static final String ALSA_DIRECTORY = "/dev/snd/";