This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!python.exe | |
import site | |
import subprocess | |
import sys | |
import os | |
DEVICES_START = "List of devices attached" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by StavFX on 10/3/13. | |
*/ | |
public class Log { | |
private static final boolean DEBUG = true; | |
private static final String NEW_LINE = System.getProperty("line.separator"); | |
public static void w(String tag, String msg) { | |
log(tag, msg); | |
} |