mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-09 22:00:39 +01:00
fix format exception in logging
This commit is contained in:
parent
22e0c9f1b1
commit
97c459d708
1 changed files with 2 additions and 2 deletions
|
@ -111,7 +111,7 @@ public class XWActivity extends FragmentActivity
|
|||
protected void onStart()
|
||||
{
|
||||
if ( XWApp.LOG_LIFECYLE ) {
|
||||
Log.i( TAG, "%s.onStart(this=%H)", this );
|
||||
Log.i( TAG, "%s.onStart(this=%H)", getClass().getSimpleName(), this );
|
||||
}
|
||||
super.onStart();
|
||||
m_dlgt.onStart();
|
||||
|
@ -121,7 +121,7 @@ public class XWActivity extends FragmentActivity
|
|||
protected void onStop()
|
||||
{
|
||||
if ( XWApp.LOG_LIFECYLE ) {
|
||||
Log.i( TAG, "%s.onStop(this=%H)", this );
|
||||
Log.i( TAG, "%s.onStop(this=%H)", getClass().getSimpleName(), this );
|
||||
}
|
||||
m_dlgt.onStop();
|
||||
super.onStop();
|
||||
|
|
Loading…
Add table
Reference in a new issue