wrap time in brackets for readability

This commit is contained in:
Andy2 2010-07-30 07:16:24 -07:00
parent f9afcc0e6f
commit b4f7a6917f

View file

@ -54,7 +54,7 @@ public class Utils {
public static void logf( String msg )
{
s_time.setToNow();
String time = s_time.format("%H:%M:%S");
String time = s_time.format("[%H:%M:%S]");
long id = Thread.currentThread().getId();
Log.d( TAG, time + "-" + id + "-" + msg );
} // logf