mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-20 22:26:54 +01:00
Revert "add timestamps to logs where older OS doesn't provide"
This reverts commit f0a05c004c
. Turns out
logcat can be made to show timestamps on older devices too.
This commit is contained in:
parent
f0a05c004c
commit
e5a6f05e92
1 changed files with 0 additions and 12 deletions
|
@ -25,7 +25,6 @@ import android.content.Context;
|
|||
import android.database.Cursor;
|
||||
import android.database.sqlite.SQLiteDatabase;
|
||||
import android.database.sqlite.SQLiteOpenHelper;
|
||||
import android.os.Build;
|
||||
import android.os.Environment;
|
||||
import android.os.Process;
|
||||
|
||||
|
@ -63,13 +62,6 @@ public class Log {
|
|||
private static boolean sUseDB;
|
||||
private static WeakReference<Context> sContextRef;
|
||||
|
||||
private static SimpleDateFormat sTSFormatter;
|
||||
static {
|
||||
if ( Build.VERSION_CODES.LOLLIPOP >= Build.VERSION.SDK_INT ) {
|
||||
sTSFormatter = new SimpleDateFormat(" MM-dd HH:mm:ss.SSS ");
|
||||
}
|
||||
}
|
||||
|
||||
private static enum LOG_LEVEL {
|
||||
INFO,
|
||||
ERROR,
|
||||
|
@ -166,10 +158,6 @@ public class Log {
|
|||
{
|
||||
String str = new Formatter().format( fmt, args ).toString();
|
||||
String fullTag = PRE_TAG + tag;
|
||||
if ( null != sTSFormatter ) {
|
||||
fullTag = sTSFormatter.format(new Date()) + fullTag;
|
||||
}
|
||||
|
||||
switch ( level ) {
|
||||
case DEBUG:
|
||||
android.util.Log.d( fullTag, str );
|
||||
|
|
Loading…
Reference in a new issue