Lines Matching refs:log
30 import android.util.Log;
206 Log.e(TAG, str, e);
208 Log.e(TAG, str + e);
211 FileLogger.log(e);
217 * If user logging is active, we concatenate any arguments and log them using Log.d
218 * We also check for file logging, and log appropriately
219 * @param strings strings to concatenate and log
233 Log.d(TAG, logText);
235 FileLogger.log(TAG, logText);
241 * Error log is used for serious issues that should always be logged
242 * @param str the string to log
245 Log.e(TAG, str);
247 FileLogger.log(TAG, str);