mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
wrap time in brackets for readability
This commit is contained in:
parent
f9afcc0e6f
commit
b4f7a6917f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue