Home | History | Annotate | Download | only in testingcamera2

Lines Matching refs:text

36      * @param text The text to print out, with optional formatting specifiers
39 synchronized static public void i(String text, Object... args) {
41 text = String.format(Locale.US, text, args);
43 android.util.Log.i(TAG, text);
45 mLogger.addToLog(text, false);
53 * @param text The text to print out, with optional formatting specifiers
56 synchronized static public void e(String text, Object... args) {
58 text = String.format(Locale.US, text, args);
60 android.util.Log.e(TAG, text);
62 mLogger.addToLog(text, true);
73 * @param text The text to print out, with optional formatting specifiers
77 synchronized static public void e(String text, Throwable e, Object... args) {
78 text = String.format("%s\n%s", text, Log.getStackTraceString(e));
80 text = String.format(Locale.US, text, args);
82 android.util.Log.e(TAG, text);
84 mLogger.addToLog(text, true);
89 public void addToLog(String text, boolean error);